移動APP中rem適配

將js中的代碼引入本身html頁面中,頁面內的全部有關尺寸大小的設定均可以用rem來代替,如用rem代替px的使用,能夠作到屏幕大內容按比例放大,是全部內容哦,若果你項目中全部內容都使用rem。html

 

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>移動APP中rem適配-jq22.com</title>
<script src="http://libs.baidu.com/jquery/1.9.1/jquery.min.js"></script>
<style>
div {
font-size:0.3rem;
text-align:center;
padding-top:1rem;
}
</style>
</head>
<body>
<div>Hello World!</div><script>
remFn(10);
window.onresize = function() {
remFn(10);
}jquery

function remFn(num) {
document.documentElement.style.fontSize = document.documentElement.clientWidth / num + 'px';
};</script>
</body>
</html>htm

相關文章
相關標籤/搜索