sass 不会
可以不适用sass 进行适配吗?
可以不适用sass 进行适配吗?
2018-04-26
额,上面那是固定的了,你就直接这样(不用scss、sass...):
let htmlWidth=document.documentElement.clientWidth || document.body.clientWidth;
let htmlDom=document.getElementsByTagName('html')[0];
htmlDom.style.fontSize=htmlWidth/37.5+'px';
window.addEventListener('resize',()=>{
let htmlWidth=document.documentElement.clientWidth || document.body.clientWidth;
let htmlDom=document.getElementsByTagName('html')[0];
htmlDom.style.fontSize=htmlWidth/37.5+'px';
console.log(htmlDom.style.fontSize);
});
这个就老师写的,基于iphone6(这个比例是最好计算的),这个时候字体想设计成16px的话就写成1.6rem;
举报