_.template
:javascript
<ol class="carousel-indicators"> <!--渲染的HTML字符串--> </ol> <div class="carousel-inner" role="listbox"> <!--渲染的HTML字符串--> </div>
/*取到模版當中的字符串*/ var pointTemplateStr = $('#point_template').html(); var imageTemplateStr = $('#image_template').html(); /*轉化成模版函數*/ var pointTemplate = _.template(pointTemplateStr); var imageTemplate = _.template(imageTemplateStr); /*傳入數據 解析成 html 字符*/ var pointHtml = pointTemplate({model:data}); var imageHtml = imageTemplate({model:data,isMobile:isMobile});//咱們只須要再加一個屬性 /*把html字符串渲染在頁面當中*/ $('.carousel-indicators').html(pointHtml); $('.carousel-inner').html(imageHtml);
<!--點模版--> <script type="text/template" id="point_template"> <%_.each(model,function(obj,i){%> <li data-target="#carousel-example-generic" data-slide-to="<%=i%>" class="<%=(i==0?'active':'')%>"></li> <%})%> </script> <!--圖片模版--> <script type="text/template" id="image_template"> <%_.each(model,function(obj,i){%> <div class="item <%=(i==0?'active':'')%>"> <% if(isMobile){ %> <a href="#" class="m_imgBox"> <img src="<%=obj.img%>" alt=""/> </a> <%} else {%> <a href="#" class="pc_imgBox" style="background-image:url(<%=obj.bac%>)"></a> <%}%> </div> <%})%> </script>
準備編輯這段時發現簡書上已經有做者寫了關於rem佈局的介紹,而且他的設置比我所用的更加簡潔,貼上地址供你們學習參考。
手機端頁面自適應解決方案—rem佈局進階版(附源碼示例)css
三大手機系統的字體:html
Heiti SC
Helvetica
HelveticaNeue
Droidsansfallback
Droid Sans
Dengxian
(方正等線體)Segoeod
各個手機系統有本身的默認字體,且都不支持微軟雅黑,如無特殊需求,手機端無需定義中文字體,使用系統默認英文字體和數字字體可以使用Helvetica
,三種系統都支持。前端
/* 移動端定義字體的代碼 */
body{
font-family:Helvetica;
}
對於只須要適配手機設備,使用px
便可。java
對於須要適配各類移動設備,使用rem
,例如只須要適配iPhone
和iPad
等分辨率差異比較挺大的設備。android
rem
配置參考:ios
html {font-size:10px}
@media screen and (min-width:480px) 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) and (max-width:959px) {
html {
font-size: 25px
}
}
@media screen and (min-width:960px) and (max-width:1079px) {
html {
font-size: 30px
}
}
@media screen and (min-width:1080px) {
html {
font-size: 32px }
}
當用戶手指放在移動設備在屏幕上滑動會觸發的touch事件:web
touchstart
——當手指觸碰屏幕時候發生。無論當前有多少隻手指。touchmove
——當手指在屏幕上滑動時連續觸發。一般咱們再滑屏頁面,會調用event``preventDefault()
能夠阻止默認狀況的發生:阻止頁面滾動。touchend
——當手指離開屏幕時觸發。touchcancel
——系統中止跟蹤觸摸時候會觸發。例如在觸摸過程當中忽然頁面alert()
一個提示框,此時會觸發該事件,這個事件比較少用。MSPointerDown
——當手指觸碰屏幕時候發生。無論當前有多少隻手指。MSPointerMove
——當手指在屏幕上滑動時連續觸發。一般咱們再滑屏頁面,會調用css
的html{-ms-touch-action:none;}
能夠阻止默認狀況的發生:阻止頁面滾動。MSPointerUp
——當手指離開屏幕時觸發。移動設備上的web網頁是有300ms延遲的,每每會形成按鈕點擊延遲甚至是點擊失效。chrome
解決方案:移動web開發
fastclick
能夠解決在手機上點擊事件的300ms延遲。zepto
的touch
模塊,tap
事件也是爲了解決在click
的延遲問題。觸摸事件的響應順序:
ontouchstart
ontouchmove
ontouchend
onclick
解決300ms延遲的問題,也能夠經過綁定ontouchstart
事件,加快對事件的響應。
retina:一種具有超高像素密度的液晶屏,一樣大小的屏幕上顯示的像素點由1個變爲多個,如在一樣帶下的屏幕上,蘋果設備的retina
顯示屏中,像素點1個變爲4個。
在高清顯示屏中的位圖被放大,圖片會變得模糊,所以移動端的視覺稿一般會設計爲傳統PC的2倍。
那麼,前端的應對方案是:
設計稿切出來的圖片長寬保證爲偶數,並使用backgroud-size
把圖片縮小爲原來的1/2。
//例如圖片寬高爲:200px*200px,那麼寫法以下
.css{width:100px;height:100px;background-size:100px 100px;}
其它元素的取值爲原來的1/2,例如視覺稿40px的字體,使用樣式的寫法爲20px。
.css{font-size:20px}
在作移動端頁面時,會發現全部a標籤在觸發點擊時或者全部設置了僞類:active
的元素,默認都會在激活狀態時,顯示高亮框,若是不想要這個高亮,那麼你能夠經過css如下方法來進行全局的禁止:
html {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
ios
用戶點擊一個連接,會出現一個半透明灰色遮罩, 若是想要禁用,可設置-webkit-tap-highlight-color
的alpha
值爲0,也就是屬性值的最後一位設置爲0就能夠去除半透明灰色遮罩。
a,button,input,textarea{-webkit-tap-highlight-color: rgba(0,0,0,0;)}
android
用戶點擊一個連接,會出現一個邊框或者半透明灰色遮罩, 不一樣生產商定義出來額效果不同,可設置-webkit-tap-highlight-color的alpha
值爲0去除部分機器自帶的效果。
a,button,input,textarea{
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-user-modify:read-write-plaintext-only;
}
-webkit-user-modify
有個反作用,就是輸入法再也不可以輸入多個字符。
另外,有些機型去除不了,如小米2。對於此類問題還有個辦法,不使用a
或者input
標籤,直接用div
標籤。
winphone
系統a
、input
標籤被點擊時產生的半透明灰色背景怎麼去掉?
<meta name="msapplication-tap-highlight" content="no">
webkit
表單元素的默認外觀怎麼重置?
.css{-webkit-appearance:none;}
webkit
表單輸入框placeholder
的顏色值能改變麼?
input::-webkit-input-placeholder{color:#AAAAAA;}
input:focus::-webkit-input-placeholder{color:#EEE}
webkit
表單輸入框placeholder
的文字能換行麼?
iOS能夠,Android不行。
如何禁止文本縮放?
當移動設備橫豎屏切換時,文本的大小會從新計算,進行相應的縮放,當咱們不須要這種狀況時,能夠選擇禁止:
html {
-webkit-text-size-adjust: 100%;
}
須要注意的是,PC端的該屬性已經被移除,該屬性在移動端要生效,必須設置meta viewport
。
若是你不想用戶能夠選中頁面中的內容,那麼你能夠在css中禁掉:
.user-select-none {
-webkit-user-select: none; /* Chrome all / Safari all */
-moz-user-select: none; /* Firefox all (移動端不須要) */
-ms-user-select: none; /* IE 10+ */
}
移動端觸摸按鈕的效果,可明示用戶有些事情正要發生,是一個比較好體驗,可是移動設備中並無鼠標指針,使用css
的hover
並不能知足咱們的需求,還好國外有個激活css
的active
效果,代碼以下:
<html> <head> <meta charset="utf-8"> <meta content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no" name="viewport"> <meta content="yes" name="apple-mobile-web-app-capable"> <meta content="black" name="apple-mobile-web-app-status-bar-style"> <meta content="telephone=no" name="format-detection"> <meta content="email=no" name="format-detection"> <style type="text/css"> a{-webkit-tap-highlight-color: rgba(0,0,0,0);} .btn-blue{display:block;height:42px;line-height:42px;text-align:center;border-radius:4px;font-size:18px;color:#FFFFFF;background-color: #4185F3;} .btn-blue:active{background-color: #357AE8;} </style> </head> <body> <div class="btn-blue">按鈕</div> <script type="text/javascript"> document.addEventListener("touchstart", function(){}, true) </script> </body> </html> 兼容性ios5+、部分android 4+、winphone 8
要作到全兼容的辦法,可經過綁定ontouchstart
和ontouchend
來控制按鈕的類名。
<html> <head> <meta charset="utf-8"> <meta content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no" name="viewport"> <meta content="yes" name="apple-mobile-web-app-capable"> <meta content="black" name="apple-mobile-web-app-status-bar-style"> <meta content="telephone=no" name="format-detection"> <meta content="email=no" name="format-detection"> <style type="text/css"> a{-webkit-tap-highlight-color: rgba(0,0,0,0);} .btn-blue{display:block;height:42px;line-height:42px;text-align:center;border-radius:4px;font-size:18px;color:#FFFFFF;background-color: #4185F3;} .btn-blue-on{background-color: #357AE8;} </style> </head> <body> <div class="btn-blue">按鈕</div> <script type="text/javascript"> var btnBlue = document.querySelector(".btn-blue"); btnBlue.ontouchstart = function(){ this.className = "btn-blue btn-blue-on" } btnBlue.ontouchend = function(){ this.className = "btn-blue" } </script> </body> </html>
事件:window.orientation
,取值:正負90表示橫屏模式、0和180表現爲豎屏模式。
window.onorientationchange = function(){ switch(window.orientation){ case -90: case 90: alert("橫屏:" + window.orientation); case 0: case 180: alert("豎屏:" + window.orientation); break; } }
樣式:
//豎屏時使用的樣式
@media all and (orientation:portrait) {
.css{}
}
//橫屏時使用的樣式
@media all and (orientation:landscape) {
.css{}
}
搖一搖功能:
HTML5 deviceMotion
:封裝了運動傳感器數據的事件,能夠獲取手機運動狀態下的運動加速度等數據。
手機拍照和上傳圖片:
<input type="file">的accept 屬性 <!-- 選擇照片 --> <input type=file accept="image/*"> <!-- 選擇視頻 --> <input type=file accept="video/*">
使用總結:
iOS
有拍照、錄像、選取本地圖片功能。android
只有選取本地圖片功能。winphone
不支持。input
控件默認外觀醜陋。消除transition
閃屏:
.css{
/*設置內嵌的元素在 3D 空間如何呈現:保留 3D*/
-webkit-transform-style: preserve-3d;
/*(設置進行轉換的元素的背面在面對用戶時是否可見:隱藏)*/
-webkit-backface-visibility: hidden;
}
開啓硬件加速:
.css {
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
android
上去掉語音輸入按鈕:
input::-webkit-input-speech-button {display: none}
<meta http-equiv="Cache-Control" content="no-siteapp" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />