您好,登錄后才能下訂單哦!
這篇文章主要介紹“Vue前端項目自適應布局怎么實現”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“Vue前端項目自適應布局怎么實現”文章能幫助大家解決問題。
px
%
vw、vh: 窗口
em: 針對父元素的font-size
rem:“root em”的縮寫,是一個相對長度單位;rem單位作用于非根元素時,相對于根元素(html)字體大小,rem單位作用于根元素字體大小時,相對于其出初始字體大小。
說明:
谷歌瀏覽器,字體的默認大小是16px;
如果父元素item1的font-size=50px,那么子元素item2的1em=50px。
如果html的頂層font-size為20px; 那么子元素item2的1rem就為20px。
假設頁面的根元素,font-size的大小沒有設置,默認為16px。
經過設計,我們的頁面主體部分寬為500px; 高為200px。要想轉換為自適應布局,我們只需要將px轉換為rem就可以。
轉換后:
寬為:500/16rem
高為:200/16rem
rem 布局適配方案
主要方法為:
按照設計稿與設備寬度的比例,動態計算并設置 html 根標簽的 font-size 大小;
css 中,設計稿元素的寬、高、相對位置等取值,按照同等比例換算為 rem 為單位的值;
設計稿中的字體使用 px 為單位,通過媒體查詢稍作調整。
1 動態設置 html 標簽 font-size 大小
精簡通用版本:
!(function(win, doc){ function setFontSize() { // 獲取window 寬度 // zepto實現 $(window).width()就是這么干的 var winWidth = window.innerWidth; // doc.documentElement.style.fontSize = (winWidth / 640) * 100 + 'px' ; // 640寬度以上進行限制 需要css進行配合 var size = (winWidth / 640) * 100; doc.documentElement.style.fontSize = (size < 100 ? size : 100) + 'px' ; } var evt = 'onorientationchange' in win ? 'orientationchange' : 'resize'; var timer = null; win.addEventListener(evt, function () { clearTimeout(timer); timer = setTimeout(setFontSize, 300); }, false); win.addEventListener("pageshow", function(e) { if (e.persisted) { clearTimeout(timer); timer = setTimeout(setFontSize, 300); } }, false); // 初始化 setFontSize(); }(window, document));
高配精確版本:
(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') { 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 通過 CSS3媒體查詢設置 rem
簡單易用 缺乏靈活度 請看demo 你懂的
@media screen and ( min-width: 320px){html{font-size:50px}} @media screen and ( min-width: 360px){html{font-size:56.25px}} @media screen and ( min-width: 375px){html{font-size:58.59375px}} @media screen and ( min-width: 384px){html{font-size:60px}} @media screen and ( min-width: 400px){html{font-size:62.5px}} @media screen and ( min-width: 414px){html{font-size:64.6875px}} @media screen and ( min-width: 424px){html{font-size:66.25px}} @media screen and ( min-width: 480px){html{font-size:75px}} @media screen and ( min-width: 540px){html{font-size:84.375px}} @media screen and ( min-width: 640px){html{font-size:100px}}
關于“Vue前端項目自適應布局怎么實現”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。