2022-11-13 分類: 網(wǎng)站建設(shè)
其實對于網(wǎng)站建設(shè)行業(yè)來講,先進的技術(shù)水平是本行業(yè)的致命要素,如果你沒有的技術(shù)水平,不能滿足客戶的需求,那為什么客戶還來找你建網(wǎng)站,你的優(yōu)勢又在哪里?這也是一些小的網(wǎng)站建設(shè)公司所存在的矛盾,技術(shù)水平不達標,單子不能簽,人員的成本過高,簽單的金額又不能滿足平時的盈利開銷。這是目前成都網(wǎng)站建設(shè)公司所存在的普遍問題,而我們成都網(wǎng)站建設(shè)-創(chuàng)新互聯(lián)就不存在這樣的問題,公司技術(shù)團隊達到50多人,是目前成都網(wǎng)站建設(shè)公司中僅有的人員配置!而就目前的手機端網(wǎng)站建設(shè)來講我們也不再話下,很多的技術(shù)都能夠勝任,今天小編就來分享一下大家常用的h5中的表達效果!
H5頁面窗口自動調(diào)整到設(shè)備寬度,并禁止用戶縮放頁面
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
忽略將頁面中的數(shù)字識別為電話號碼
<meta name="format-detection" content="telephone=no">
忽略Android平臺中對郵箱地址的識別
<meta name="format-detection" content="email=no">
當網(wǎng)站添加到主屏幕快速啟動方式,可隱藏地址欄,僅針對ios的safari
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- ios7.0版本以后,safari上已看不到效果 -->
將網(wǎng)站添加到主屏幕快速啟動方式,僅針對ios的safari頂端狀態(tài)條的樣式
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- 可選default、black、black-translucent -->
viewport模板——通用
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection" content="telephone=no">
<meta name="format-detection" content="email=no">
<link rel="stylesheet" href="index.css">
這里開始內(nèi)容
viewport模板 – target-densitydpi=device-dpi,android 2.3.5以下版本不支持
01
<meta name="viewport" content="width=750, user-scalable=no, target-densitydpi=device-dpi"><!-- width取值與頁面定義的寬度一致 -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection" content="telephone=no">
<meta name="format-detection" content="email=no">
<link rel="stylesheet" href="index.css">
這里開始內(nèi)容
移動端如何定義字體font-family
中文字體使用系統(tǒng)默認即可,英文用Helvetica
body{font-family:Helvetica;}
移動端字體單位font-size選擇px還是rem
對于只需要適配少部分手機設(shè)備,且分辨率對頁面影響不大的,使用px即可
對于需要適配各種移動設(shè)備,使用rem,例如只需要適配iPhone和iPad等分辨率差別比較挺大的設(shè)備
rem配置參考:
html{font-size:10px}
@media screen and (min-width:321px) and (max-width:375px){html{font-size:11px}}
@media screen and (min-width:376px) and (max-width:414px){html{font-size:12px}}
@media screen and (min-width:415px) and (max-width:639px){html{font-size:15px}}
@media screen and (min-width:640px) and (max-width:719px){html{font-size:20px}}
@media screen and (min-width:720px) and (max-width:749px){html{font-size:22.5px}}
@media screen and (min-width:750px) and (max-width:799px){html{font-size:23.5px}}
@media screen and (min-width:800px){html{font-size:25px}}
文章題目:html5可以通用的幾段代碼
網(wǎng)址分享:http://jinyejixie.com/news41/213291.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供App設(shè)計、云服務(wù)器、品牌網(wǎng)站制作、全網(wǎng)營銷推廣、小程序開發(fā)、網(wǎng)站收錄
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容