2022-11-13 分類: 網(wǎng)站建設(shè)
其實(shí)對(duì)于網(wǎng)站建設(shè)行業(yè)來講,先進(jìn)的技術(shù)水平是本行業(yè)的致命要素,如果你沒有的技術(shù)水平,不能滿足客戶的需求,那為什么客戶還來找你建網(wǎng)站,你的優(yōu)勢(shì)又在哪里?這也是一些小的網(wǎng)站建設(shè)公司所存在的矛盾,技術(shù)水平不達(dá)標(biāo),單子不能簽,人員的成本過高,簽單的金額又不能滿足平時(shí)的盈利開銷。這是目前成都網(wǎng)站建設(shè)公司所存在的普遍問題,而我們成都網(wǎng)站建設(shè)-創(chuàng)新互聯(lián)就不存在這樣的問題,公司技術(shù)團(tuán)隊(duì)達(dá)到50多人,是目前成都網(wǎng)站建設(shè)公司中僅有的人員配置!而就目前的手機(jī)端網(wǎng)站建設(shè)來講我們也不再話下,很多的技術(shù)都能夠勝任,今天小編就來分享一下大家常用的h5中的表達(dá)效果!
H5頁面窗口自動(dòng)調(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ù)字識(shí)別為電話號(hào)碼
<meta name="format-detection" content="telephone=no">
忽略Android平臺(tái)中對(duì)郵箱地址的識(shí)別
<meta name="format-detection" content="email=no">
當(dāng)網(wǎng)站添加到主屏幕快速啟動(dòng)方式,可隱藏地址欄,僅針對(duì)ios的safari
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- ios7.0版本以后,safari上已看不到效果 -->
將網(wǎng)站添加到主屏幕快速啟動(dòng)方式,僅針對(duì)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)容
移動(dòng)端如何定義字體font-family
中文字體使用系統(tǒng)默認(rèn)即可,英文用Helvetica
body{font-family:Helvetica;}
移動(dòng)端字體單位font-size選擇px還是rem
對(duì)于只需要適配少部分手機(jī)設(shè)備,且分辨率對(duì)頁面影響不大的,使用px即可
對(duì)于需要適配各種移動(dòng)設(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://www.rwnh.cn/news41/213291.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供App設(shè)計(jì)、云服務(wù)器、品牌網(wǎng)站制作、全網(wǎng)營銷推廣、小程序開發(fā)、網(wǎng)站收錄
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容