移动端通过js来用rem控制字体大小的用法
Posted 橙子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了移动端通过js来用rem控制字体大小的用法相关的知识,希望对你有一定的参考价值。
通过js来控制页面字体大小,直接上代码:
(function() { var roothtml = $(":root"); var rootResize = function() { var fontSize = $(window).width() < 640 ? $(window).width() / 16 : 40; rootHtml.css("font-size", fontSize); } rootResize(); $(window).resize(function() { rootResize(); }); })();
接下来可以直接在页面根元素中规定font-size的大小,这样就可以控制整体页面的文字大小自适应
body{width:16rem;margin:0 auto;background-color: #fff;font-size:.6rem;color:#000;}
最后总结一下 页面中css公共样式:
*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0;}
body,form,ul,ol,li,dl,dt,dd,h1,h2,h3,h4,h5,h6,p{margin:0;padding:0;}
div,ul,dl,dt,dd,p,h1,h2,h3,h4,h5,h6{zoom:1;}
body{font-family:‘Microsoft YaHei‘;
/*-webkit-user-select:none;*/
-webkit-text-size-adjust:none;background-color: #fff;}
input,select{line-height:normal;vertical-align:middle;}
textarea{font-size:1em;line-height:1.5em;}
a{text-decoration:none;color:#000;outline:0;}
a:visited{text-decoration:none;} a:hover{text-decoration:none;}
img{border:0;max-width:100%;} li,ul{list-style:none;}
body{width:16rem;margin:0 auto;background-color: #fff;font-size:.6rem;color:#000;}
.hidden{display:none;} .clear{clear:both;} .cl{clear:both;} .zleft{float:left;} .zright{float:right;}
.zmore{color:#771d0e!important;} .zblock{display:block;} .zred{color:red!important;} /*兼容苹果*/
input{-webkit-appearance:none; /*去除input默认样式*/} input[type=‘radio‘]{-webkit-appearance:radio;} input[type=‘submit‘],input[type=‘reset‘],input[type=‘button‘],input{-webkit-appearance:none;} /*兼容苹果结束*/
以上都是个人平时写移动端页面所需的常用css样式
以上是关于移动端通过js来用rem控制字体大小的用法的主要内容,如果未能解决你的问题,请参考以下文章