动态获取移动端视宽,从而结合rem达到适配
Posted 520bigbear
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了动态获取移动端视宽,从而结合rem达到适配相关的知识,希望对你有一定的参考价值。
// jq !function(){ var windowWidth= $(window).width(); if(windowWidth > 750) { windowWidth = 750; } var fontSize = windowWidth / 750 * 50;//50是html根元素font-size值 $("html").attr("style", "font-size:" + fontSize + "px"); $(window).resize(function() { windowWidth = $(window).width(); if(windowWidth > 750) { windowWidth = 750; } fontSize = windowWidth / 750 * 50; $("html").attr("style", "font-size:" + fontSize + "px"); }); }(); //js !function(){ var windowWidth = document.documentElement.clientWidth || document.body.clientWidth; if(windowWidth > 750) { windowWidth = 750; } var fontSize = windowWidth / 750 * 50; //50是html根元素font-size值 document.getElementsByTagName(‘html‘)[0].style.fontSize = fontSize + "px"; window.onresize = function(){ var windowWidth = document.documentElement.clientWidth || document.body.clientWidth; if(windowWidth > 750) { windowWidth = 750; } fontSize = windowWidth / 750 * 50; document.getElementsByTagName(‘html‘)[0].style.fontSize = fontSize + "px"; } }();
以上是关于动态获取移动端视宽,从而结合rem达到适配的主要内容,如果未能解决你的问题,请参考以下文章