码迷,mamicode.com
首页 > 其他好文 > 详细

字体大小适配宽度

时间:2017-12-13 11:50:33      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:var   cti   res   大小   font   size   ext   适配   字体   

加在head中

    <script type="text/javascript">
        function fontFun() {
            var winW = document.documentElement.clientWidth;
            document.documentElement.style.fontSize = (winW / 750 * 625) + "%";
        }
        fontFun();
        window.onresize = fontFun;
    </script>

 

字体大小适配宽度

标签:var   cti   res   大小   font   size   ext   适配   字体   

原文地址:http://www.cnblogs.com/Basu/p/8031073.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!