中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue移動端html5頁面根據屏幕適配的四種解決方法

發布時間:2020-10-20 20:47:57 來源:腳本之家 閱讀:447 作者:百撕可樂 欄目:web開發

最近做了兩個關于h6頁面對接公眾號的項目,不得不提打開微信瀏覽器內置地圖導航的功能確實有點惡心。下次想起來了的話,進行總結分享一下如何處理。在vue移動端h6頁面當中,其中適配是經常會遇到的問題,這塊主要有死個方法可以適用。

方法一:引入淘寶開源的可伸縮布局方案

引入淘寶開源的可伸縮布局方案:https://github.com/amfe/lib-flexible(此處可點擊)

淘寶的其實也和viewport的有點像,但是它主要是根據設備設備像素比設置scale的值,保持視口device-width始終等于設備物理像素,屏幕大小動態計算根字體大小,具體是將屏幕劃分為10等分。這塊也可以直接用js實現,后面會提到

具體引入和使用方法,移步github查看,非常詳細。

方法二:viewport 的使用

github里邊,有提到  viewport 的使用。我感覺這篇文章關于viewport 的介紹特別詳細,包括比例、是否縮放等的屬性介紹特別的詳細,雖然文章的內容一大片的字看起來很多,但是請耐心看完,都是干貨能很好的讓你認識viewport。如果比較著急,請繼續往下看總結圖吧

https://www.jb51.net/article/149140.htm

關于 viewport 的,這塊直接引用上面文章的內容,我感覺也是最干脆最直接的總結了吧

vue移動端html5頁面根據屏幕適配的四種解決方法

方法三:使用js+viewport動態設置手動適配rem

我的編輯器是vscode,添加了插件cssrem自動轉換

index.html

<!DOCTYPE html>
<html>
 <head>
 <meta charset="utf-8">
 <!-- <meta name="viewport" content="width=device-width,initial-scale=1.0"> -->
 <meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
 <!-- 啟用360瀏覽器的極速模式(webkit) -->
 <meta name="renderer" content="webkit">
 <!-- 避免IE使用兼容模式 -->
 <meta http-equiv="X-UA-Compatible" content="IE=edge">
 <!-- 針對手持設備優化,主要是針對一些老的不識別viewport的瀏覽器,比如黑莓 -->
 <meta name="HandheldFriendly" content="true">
 <!-- 微軟的老式瀏覽器 -->
 <meta name="MobileOptimized" content="320">
 <!-- uc強制豎屏 -->
 <meta name="screen-orientation" content="portrait">
 <!-- QQ強制豎屏 -->
 <meta name="x5-orientation" content="portrait">
 <!-- UC強制全屏 -->
 <meta name="full-screen" content="yes">
 <!-- QQ強制全屏 -->
 <meta name="x5-fullscreen" content="true">
 <!-- UC應用模式 -->
 <meta name="browsermode" content="application">
 <!-- QQ應用模式 -->
 <meta name="x5-page-mode" content="app">
 <!-- windows phone 點擊無高光 -->
 <meta name="msapplication-tap-highlight" content="no">
 <meta content="telephone=no" name="format-detection" />
 <meta name="huaban" content="nopin" />
 <link rel="icon" type="image/x-icon" href="/favicon.ico" rel="external nofollow" >
 <title>新茶飲</title>
 <script src="/config.js"></script>
 <script src="http://res.wx.qq.com/open/js/jweixin-1.0.0.js"></script>
 </head>
 <body>
 <div id="app"></div>
 <!-- 
 在iphone 5 中1rem=16px; 
 html font-size =16px=1rem;
 -->
 <script>
 //得到手機屏幕的寬度
 let htmlWidth = document.documentElement.clientWidth || document.body.clientWidth;
 console.log('htmlWidth',htmlWidth)
 //得到html的Dom元素
 let htmlDom = document.getElementsByTagName('html')[0];
 // if(htmlWidth>640){//超過640大小的,字體根部都是16px
 // htmlWidth=640;
 // console.log('htmlWidth-true',htmlWidth)
 // }
 //設置根元素字體大小
 htmlDom.style.fontSize = htmlWidth / 40 + 'px';
 </script>
 </body>
</html>

方法四:根據css的媒體查詢動態設置根部html字體大小

html {font-size: 625%; /*100 ÷ 16 × 100% = 625%*/}
@media screen and (min-width:360px) and (max-width:374px) and (orientation:portrait) {
 html { font-size: 703%; }
}
@media screen and (min-width:375px) and (max-width:383px) and (orientation:portrait) {
 html { font-size: 732.4%; }
}
@media screen and (min-width:384px) and (max-width:399px) and (orientation:portrait) {
 html { font-size: 750%; }
}
@media screen and (min-width:400px) and (max-width:413px) and (orientation:portrait) {
 html { font-size: 781.25%; }
}
@media screen and (min-width:414px) and (max-width:431px) and (orientation:portrait){
 html { font-size: 808.6%; }
}
@media screen and (min-width:432px) and (max-width:479px) and (orientation:portrait){
 html { font-size: 843.75%; }
}

總結

以上所述是小編給大家介紹的vue移動端html5頁面根據屏幕適配的四種解決方法,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

容城县| 五峰| 四会市| 务川| 旬阳县| 定边县| 宁南县| 江陵县| 扶风县| 丽水市| 旬阳县| 宁化县| 甘肃省| 望城县| 仲巴县| 宁城县| 铅山县| 许昌县| 隆回县| 梅州市| 邹城市| 南丹县| 洪湖市| 河间市| 女性| 潞西市| 兴海县| 舟曲县| 锦屏县| 澄城县| 鄄城县| 嘉义市| 雷州市| 巴林右旗| 神木县| 揭东县| 武邑县| 邻水| 循化| 丹东市| 三亚市|