详解H5流动页之挪移端REM布局适配办法-
1 viewport 缩放方案
在挪移端,可以通过 viewport 缩放页面大小比率达到目的。
简略来说,即所有宽高像素与视觉稿输出雷同,然后通过页面宽度与视觉稿的宽度比率,动态设定 viewport。缩放方案中心代码参照 :
(function () { var docEl = document.documentElement; var isMobile = window.isMobile /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini|Mobi/i.test(navigator.userAgent); function setScale() { var pageScale = 1; if (window.top !== window) { return pageScale; } var width = docEl.clientWidth || 360; var height = docEl.clientHeight || 640; if (width / height >= 360 / 640) { // 高度优先 pageScale = height / 640; } else { pageScale = width / 360; } var content = 'width=' + 360 + ', initial-scale=' + pageScale + ', maximum-scale=' + pageScale + ', user-scalable=no'; document.getElementById('viewport').setAttribute('content', content); window.pageScale = pageScale; } if (isMobile) { setScale(); } else { docEl.className += ' pc'; } })()
这种方案在我们去年的一次 H5 流动页设计中进行了相干实践。
但是要是但愿 PC 上也能显示,因为没有 viewport 的缩放概念,只能以牢固值来设置,这个结果就不太志愿。
2 rem 布局适配方案
rem 布局适配方案被提到的比拼多,在各大互联网公司产品中都有较为宽泛的利用。
简略来说其办法为:
按照设计稿与设施宽度的比例,动态盘算并设定 html 根标签的 font-size 大小;
css 中,设计稿元素的宽、高、相对位置等取值,按照平等比例换算为 rem 为单位的值;
设计稿中的字体运用 px 为单位,通过媒体查询稍作调整。
下面我们举个例子来注明。
2.1 动态设定 html 标签 font-size 大小
首先个题目是 html 标签的 font-size 动态盘算。这取决于怎样约定换算比例,以页面宽度十等份为例,中心代码参照 :
(function(WIN) { var setFontSize = WIN.setFontSize = function (_width) { var docEl = document.documentElement; // 猎取目前窗口的宽度 var width = _width || docEl.clientWidth; // docEl.getBoundingClientRect().width; // 大于 1080px 按 1080 if (width > 1080) { width = 1080; } var rem = width / 10; console.log(rem); docEl.style.fontSize = rem + 'px'; // 局部机型上的误差、兼容性处置 var actualSize = win.getComputedStyle && parseFloat(win.getComputedStyle(docEl)["font-size"]); if (actualSize !== rem && actualSize > 0 && Math.abs(actualSize - rem) > 1) { var remScaled = rem * rem / actualSize; docEl.style.fontSize = remScaled + 'px'; } } var timer; //函数节流 function dbcRefresh() { clearTimeout(timer); timer = setTimeout(setFontSize, 100); } //窗口更新动态转变 font-size WIN.addEventListener('resize', dbcRefresh, false); //页面显示时盘算一次 WIN.addEventListener('pageshow', function(e) { if (e.persisted) { dbcRefresh() } }, false); setFontSize(); })(window)
别的,关于全屏显示的 H5 流动页,对宽高比例有所请求,此时应该做的调整。可以这么来做:
function adjustWarp(warpId = '#warp') { // if (window.isMobile) return; const $win = $(window); const height = $win.height(); let width = $win.width(); // 考虑导航栏状况 if (width / height < 360 / 600) { return; } width = Math.ceil(height * 360 / 640); $(warpId).css({ height, width, postion: 'relative', top: 0, left: 'auto', margin: '0 auto' }); // 重新计算 rem window.setFontSize(width); }
按照这种缩放办法,险些在任何设施上都可以实现等比缩放的精准布局。
2.2 元素大小取值办法
第二个题目是元素大小的取值。
以设计稿宽度 1080px 为例,我们将宽度分为 10 等份以便于换算,那么 1rem = 1080 / 10 = 108px 。其换算办法为:
const px2rem = function(px, rem = 108) { let remVal = parseFloat(px) / rem; if (typeof px === "string" && px.match(/px$/)) { remVal += 'rem'; } return remVal; }
例如,设计稿中有一个图片大小为 460x210 ,相对页面位置 top: 321px; left: 70; 。按照如上换算方式,得到该元素终究的 css 样式应为:
.img_demo { position: absolute; background-size: cover; background-image: url('demo.png'); top: 2.97222rem; left: 0.64814rem; width: 4.25926rem; height: 1.94444rem; }
2.3 rem 布局方案的开发方式
通过以上办法,rem 布局方案就得到了实现。但是手动盘算 rem 的取值显然不实际。
通过 less/sass 预处置工具,我们只需要设定 mixins 办法,然后按照设计稿的现实大小来取值即可。以 less 为例,mixins 参照 如下:
// px 转 rem .px2rem(@px, @attr: 'width', @rem: 108rem) { @{attr}: (@px / @rem); } .px2remTLWH(@top, @left, @width, @height, @rem: 108rem) { .px2rem(@top, top, @rem); .px2rem(@left, left, @rem); .px2rem(@width, width, @rem); .px2rem(@height, height, @rem); }
针对前文的示例元素,css 样式可以这样来写:
.img_demo { position: absolute; background-size: cover; background-image: url('demo.png'); .px2remTLWH(321, 70, 460, 210); }
这里,宽和高可以直接通过设计稿输出的图片元素大小读取到;top/left 的取值,可以通过在 Photoshop 中挪移参照 线定位元素迅速得到。
2.4 字体运用 px 为单位
字体运用 rem 等比缩放会涌现显示上的题目,只需要针对性运用媒体查询设定几种大小即可。
示例参照 :
// 字体相应式 @media screen and (max-width: 321px) { body { font-size: 13px; } } @media screen and (min-width: 321px) and (max-width: 400px) { body { font-size: 14px; } } @media screen and (min-width: 400px) { body { font-size: 16px; } }