博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JS rem 设置
阅读量:4959 次
发布时间:2019-06-12

本文共 473 字,大约阅读时间需要 1 分钟。

(function () {	var docEl = document.documentElement;	var resize = 'orientationchange' in window ? 'orientationchange' : 'resize';	var setRem = function () {		var screenWidth = docEl.clientWidth || window.screen.width || 360;		// 1080 PSD宽度(可变的)		docEl.style.fontSize = (100 * screenWidth / 1080) + 'px';	}; 	window.addEventListener('resize', setRem, false);	setRem();})(); // 用法 psd量出来的像素距离 除以100  比如psd: 100px 转换后 1rem;

  

转载于:https://www.cnblogs.com/zsongs/p/6015749.html

你可能感兴趣的文章
CODE[VS] 1842 递归第一次
查看>>
20180418小测
查看>>
Spring Cloud是怎么运行的?
查看>>
12 联结表
查看>>
数字三角形
查看>>
NGUI 减少drawcall规则
查看>>
三元表达,匿名函数
查看>>
前端笔记-基础笔记
查看>>
【LeetCode & 剑指offer刷题】查找与排序题6:33. Search in Rotated Sorted Array(系列)
查看>>
GNU/Linux超级本ZaReason Ultralap 440体验
查看>>
将github上托管的代码 在我的域名下运行
查看>>
【Manthan, Codefest 18 (rated, Div. 1 + Div. 2) C】Equalize
查看>>
【codeforces 767A】Snacktower
查看>>
【MemSQL Start[c]UP 3.0 - Round 1 C】 Pie Rules
查看>>
Ognl中“%”、“#”、“$”详解
查看>>
我对应用软件——美团的看法
查看>>
我最喜欢的 5 个 Gedit 插件
查看>>
OOoLatex:在 OpenOffice.org 中拔出 Latex 公式
查看>>
linu学习第二天:文件系统相关操作
查看>>
执行了的程序,才是你的程序.
查看>>