您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“html5活動頁之移動端REM布局適配的示例分析”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“html5活動頁之移動端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; } }
以上是“html5活動頁之移動端REM布局適配的示例分析”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。