码迷,mamicode.com
首页 > Web开发 > 详细

适配的js

时间:2017-01-12 09:47:22      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:load   pre   rip   elements   client   class   style   hang   res   

/**
* Created by fanso2o on 2016/9/7.
*/
$(document).ready(function () {
function change() {
var html = document.getElementsByTagName(‘html‘)[0];
html.style.fontSize = 20 / 375 * document.body.clientWidth + ‘px‘;
}
$(window).resize(function () {
change();
$("body").removeClass("ng-hide");
});
$(window).resize();
});


<script type="text/javascript">
window.onload = function () {
function change() {
var html = document.getElementsByTagName(‘html‘)[0];
html.style.fontSize = 10 / 375 * window.screen.width + ‘px‘;
};
window.onresize = function () {
change();
};
change();
}
</script>

适配的js

标签:load   pre   rip   elements   client   class   style   hang   res   

原文地址:http://www.cnblogs.com/mengruying/p/6274455.html

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