自响应布局封装函数
Posted yangwan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自响应布局封装函数相关的知识,希望对你有一定的参考价值。
(function(){
var html=document.querySelector(‘html‘)
html.style.fontSize=window.innerWidth/7.5+‘px‘
window.onresize=function(e){
html.style.fontSize=window.innerWidth/7.5+‘px‘
}
})()
以上是关于自响应布局封装函数的主要内容,如果未能解决你的问题,请参考以下文章