码迷,mamicode.com
首页 > 其他好文 > 详细

vue中rem的转换

时间:2019-01-15 16:58:33      阅读:335      评论:0      收藏:0      [点我收藏+]

标签:nbsp   div   alc   lis   win   change   any   let   转换   

 1 function rems(doc: any, win: any): void {
 2     let docEl = doc.documentElement,
 3     resizeEvt = ‘orientationchange‘ in window ? ‘orientationchange‘ : ‘resize‘,
 4     recalc = function () {
 5     let clientWidth = docEl.clientWidth;
 6     if (!clientWidth) return;
 7     docEl.style.fontSize = 20 * (clientWidth / 750) + ‘px‘;
 8     };
 9     if (!doc.addEventListener) return;
10     win.addEventListener(resizeEvt, recalc, false);
11     doc.addEventListener(‘DOMContentLoaded‘, recalc, false);
12 }
13 export default {
14     return : rems(document,window)
15 }

 

vue中rem的转换

标签:nbsp   div   alc   lis   win   change   any   let   转换   

原文地址:https://www.cnblogs.com/zwh520/p/10272520.html

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