自定义rem适配
Posted wywd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义rem适配相关的知识,希望对你有一定的参考价值。
// 设计稿自定义为375px 利用测量的px大小除以50px 即可得到所需rem值
(function () {
remLayout();
function remLayout() {
// 获取屏幕宽度
var w = document.documentElement.clientWidth || document.body.clientWidth;
w = w > 768 ? 768 : w;
w = w <= 320 ? 320 : w;
// document.documentElement 获取到的html标签
document.documentElement.style.fontSize = w / 7.5 + ‘px‘;
}
// resize 监听页面变化
window.addEventListener(‘resize‘, function () {
remLayout();
}, false);
})();
以上是关于自定义rem适配的主要内容,如果未能解决你的问题,请参考以下文章
Android 屏幕适配屏幕适配通用解决方案 ⑤ ( 自定义组件解决方案 | 自定义 ViewGroup 组件 onMeasure 方法中计算每个子组件坐标数据 | 自定义组件完整代码 )