html5移動開發知識點大全

若是你是一名前端er,又想在移動設備上開發出本身的應用,那怎麼實現呢?幸虧,webkit內核的瀏覽器能幫助咱們完成這一切。接觸 webkit webApp的開發已經有一段時間了,現把一些技巧分享給你們 :

1. viewport:

也就是可視區域。對於桌面瀏覽器,咱們都很清楚viewport是什麼,就是出去了全部工具欄、狀態欄、滾動條等等以後用於看網頁的區域,

這是真正有效的區域。因爲移動設備屏幕寬度不一樣於傳統web,所以咱們須要改變viewport;

實際上咱們能夠操做的屬性有4 個:

width -             //  viewport 的寬度 (範圍從200 到10,000,默認爲980 像素)

height -            //  viewport 的高度 (範圍從223 到10,000)

initial-scale -     //  初始的縮放比例 (範圍從>0 到10)

minimum-scale -    //   容許用戶縮放到的最小比例

maximum-scale -    //   容許用戶縮放到的最大比例

user-scalable -    //   用戶是否能夠手動縮 (no,yes)

那麼到底這些設置如何讓Safari 知道?其實很簡單,就一個meta,形如:

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">   //編碼

<meta id="viewport" name="viewport" content="width=320; 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 content="black" name="apple-mobile-web-app-status-bar-style" /> //指定的iphone中safari頂端的狀態條的樣式       

<meta content="telephone=no" name="format-detection" />       //告訴設備忽略將頁面中的數字識別爲電話號碼     

<meta name="Author" contect="Mr.He"/ > 

在設置了initial-scale=1 以後,咱們終於能夠以1:1 的比例進行頁面設計了。關於viewport,還有一個很重要的概念是:iphone 的safari 瀏覽器徹底沒有滾動條,並且不是簡單的「隱藏滾動條」,是根本沒有這個功能。iphone 的safari 瀏覽器實際上從一開始就完整顯示了這個網頁,而後用viewport 查看其中的一部分。當你用手指拖動時,其實拖的不是頁面,而是viewport。瀏覽器行爲的改變不止是滾動條,交互事件也跟普通桌面不同。(請參考:指尖的下JS 系列文章)

2. link:

<link rel=」apple-touch-startup-image」 href=」startup.png」 /> // 設置開始頁面圖片

<link rel=」apple-touch-icon」 href=」iphon_tetris_icon.png」/> // 在設置書籤的時候能夠顯示好看的圖標

<link rel="stylesheet" media="all and (orientation:portrait)" href="portrait.css">    // 肖像模式樣式      

<link rel="stylesheet" media="all and (orientation:landscape)" href="landscape.css"   // 風景模式樣式

//豎屏時使用的樣式

<style media="all and (orientation:portrait)" type="text/css">

#landscape { display: none; }

</style>


//橫屏時使用的樣式

<style media="all and (orientation:landscape)" type="text/css">

#portrait { display: none; }

</style> 

3. 事件 : (請參考:指尖的下JS 系列文章)

// 手勢事件

touchstart            //當手指接觸屏幕時觸發

touchmove           //當已經接觸屏幕的手指開始移動後觸發

touchend             //當手指離開屏幕時觸發

touchcancel

// 觸摸事件

gesturestart          //當兩個手指接觸屏幕時觸發

gesturechange      //當兩個手指接觸屏幕後開始移動時觸發

gestureend

// 屏幕旋轉事件  

onorientationchange    

// 檢測觸摸屏幕的手指什麼時候改變方向      

orientationchange      

// touch事件支持的相關屬性

touches        

targetTouches      

changedTouches             

clientX    // X coordinate of touch relative to the viewport (excludes scroll offset)      

clientY    // Y coordinate of touch relative to the viewport (excludes scroll offset)      

screenX    // Relative to the screen       

screenY     // Relative to the screen      

pageX     // Relative to the full page (includes scrolling)    

pageY     // Relative to the full page (includes scrolling)    

target     // Node the touch event originated from     

identifier     // An identifying number, unique to each touch event

4. 屏幕旋轉事件:onorientationchange

添加屏幕旋轉事件偵聽,可隨時發現屏幕旋轉狀態(左旋、右旋仍是沒旋)。例子:

// 判斷屏幕是否旋轉

function orientationChange() {

    switch(window.orientation) {

      case 0: 

            alert("肖像模式 0,screen-width: " + screen.width + "; screen-height:" + screen.height);

            break;

      case -90: 

            alert("左旋 -90,screen-width: " + screen.width + "; screen-height:" + screen.height);

            break;

      case 90:   

            alert("右旋 90,screen-width: " + screen.width + "; screen-height:" + screen.height);

            break;

      case 180:   

          alert("風景模式 180,screen-width: " + screen.width + "; screen-height:" + screen.height);

          break;

    };<br>};

// 添加事件監聽

addEventListener('load', function(){

    orientationChange();

    window.onorientationchange = orientationChange;

});

5. 隱藏地址欄 & 處理事件的時候,防止滾動條出現:

// 隱藏地址欄  & 處理事件的時候 ,防止滾動條出現

addEventListener('load', function(){

        setTimeout(function(){ window.scrollTo(0, 1); }, 100);

});

6. 雙手指滑動事件:

// 雙手指滑動事件

addEventListener('load',  function(){ window.onmousewheel = twoFingerScroll;},

     false              // 兼容各瀏覽器,表示在冒泡階段調用事件處理程序 (true 捕獲階段)

);

function twoFingerScroll(ev) {

    var delta =ev.wheelDelta/120;              //對 delta 值進行判斷(好比正負) ,然後執行相應操做

    return true;

};

7. 判斷是否爲iPhone:

// 判斷是否爲 iPhone :

function isAppleMobile() {

    return (navigator.platform.indexOf('iPad') != -1);

};

8. localStorage:

 例子 :(注意數據名稱  n  要用引號引發來)

var v = localStorage.getItem('n') ? localStorage.getItem('n') : "";   // 若是名稱是  n 的數據存在 ,則將其讀出 ,賦予變量  v  。

localStorage.setItem('n', v);                                           // 寫入名稱爲 n、值爲  v  的數據

localStorage.removeItem('n');                                           // 刪除名稱爲  n  的數據   

9. 使用特殊連接:

 若是你關閉自動識別後 ,又但願某些電話號碼可以連接到 iPhone 的撥號功能 ,那麼能夠經過這樣來聲明電話連接 ,

<a href="tel:12345654321">打電話給我</a>

<a href="sms:12345654321">發短信</a>

或用於單元格:

<td onclick="location.href='tel:122'">

10. 自動大寫與自動修正

要關閉這兩項功能,能夠經過autocapitalize 與autocorrect 這兩個選項:

<input type="text" autocapitalize="off" autocorrect="off" />

11. WebKit CSS:

①「盒模型」的具體描述性質的包圍盒塊內容,包括邊界,填充等等。

-webkit-border-bottom-left-radius: radius;

-webkit-border-top-left-radius: horizontal_radius vertical_radius;

-webkit-border-radius: radius;      //容器圓角

-webkit-box-sizing: sizing_model; 邊框常量值:border-box/content-box

-webkit-box-shadow: hoff voff blur color; //容器陰影(參數分別爲:水平X 方向偏移量;垂直Y 方向偏移量;高斯模糊半徑值;陰影顏色值)

-webkit-margin-bottom-collapse: collapse_behavior; 常量值:collapse/discard/separate

-webkit-margin-start: width;

-webkit-padding-start: width;

-webkit-border-image: url(borderimg.gif) 25 25 25 25 round/stretch round/stretch;

-webkit-appearance: push-button;   //內置的CSS 表現,暫時只支持push-button

②「視覺格式化模型」描述性質,肯定了位置和大小的塊元素。

direction: rtl

unicode-bidi: bidi-override; 常量:bidi-override/embed/normal

③「視覺效果」描述屬性,調整的視覺效果塊內容,包括溢出行爲,調整行爲,能見度,動畫,變換,和過渡。

clip: rect(10px, 5px, 10px, 5px)

resize: auto; 常量:auto/both/horizontal/none/vertical

visibility: visible; 常量: collapse/hidden/visible

-webkit-transition: opacity 1s linear; 動畫效果 ease/linear/ease-in/ease-out/ease-in-out

-webkit-backface-visibility: visibler; 常量:visible(默認值)/hidden

-webkit-box-reflect: right 1px; 鏡向反轉

-webkit-box-reflect: below 4px -webkit-gradient(linear, left top, left bottom,

from(transparent), color-stop(0.5, transparent), to(white));

-webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));;   //CSS 遮罩/蒙板效果css

相關文章
相關標籤/搜索