這篇文章主要介紹了CSS3中媒體查詢結合rem布局適配手機屏幕的示例分析,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
成都創(chuàng)新互聯(lián)公司專注于常德網(wǎng)站建設服務及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供常德營銷型網(wǎng)站建設,常德網(wǎng)站制作、常德網(wǎng)頁設計、常德網(wǎng)站官網(wǎng)定制、微信小程序定制開發(fā)服務,打造常德網(wǎng)絡公司原創(chuàng)品牌,更為您提供常德網(wǎng)站排名全網(wǎng)營銷落地服務。
css3語法: (750px設計圖的1rem = 100px)
@media only screen and (min-width: 320px) and (max-width: 479px){ html { font-size: 42.67px !important; } } @media only screen and (min-width: 480px) and (max-width: 639px){ html { font-size: 64px !important; } } @media only screen and (min-width: 640px) and (max-width: 749px){ html { font-size: 85.34px !important; } } @media only screen and (min-width: 750px) and (max-width: 959px){ html { font-size: 100px !important; } } @media only screen and (min-width: 960px) and (max-width: 1241px){ html { font-size: 128px !important; } } @media only screen and (min-width: 1242px){ html { font-size: 165.6px !important; } }
js控制
(zepto / jQuery)(750px設計圖的1rem = 100px) function setFont() { let window_width = window.innerWidth; let font_size = parseFloat(window_width / 3.75); $('html').css('font-size', font_size); } $(window).on('resize', function () { setFont(); });
感謝你能夠認真閱讀完這篇文章,希望小編分享的“CSS3中媒體查詢結合rem布局適配手機屏幕的示例分析”這篇文章對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián),關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關知識等著你來學習!