萬盛學電腦網

 萬盛學電腦網 >> 網頁制作 >> Html5 >> 針對webkit的HTML, CSS和Javascript

針對webkit的HTML, CSS和Javascript

前面有一篇文章介紹了HTML5的一些新特性以及技巧, 現再來總結一些更多的針對webkit的HTML, CSS和Javascript方面的特性.

HTML, 從HTML文檔的開始到結束排列:

XML/HTML Code復制內容到剪貼板
  1. <meta name=”viewport” content=”width=device-width, initial-scale=1.0″/>   
  2. <!--讓內容的寬度自適應為設備的寬度, 在做Mobile Web時必須加的一條  -->  
  3. <meta name=”format-detection” content=”telephone=no”]]>   
  4. <!--禁用手機號碼鏈接(for iPhone)  -->  
  5. <link rel=”apple-touch-icon” href=”icon.png”/>   
  6. <!--設置你網頁的圖標, 尺寸為57X57 px  -->  
  7. <!– iOS 2.0+: tell iOS not to apply any glare effects to the icon –>    
  8. <link rel=”apple-touch-icon-precomposed” href=”icon.png”/>    
  9. <!– iOS 4.2+ icons for different resolutions –>    
  10. <link rel=”apple-touch-icon” sizes=”72×72″ href=”touch-icon-ipad.png” />    
  11. <link rel=”apple-touch-icon” sizes=”114×114″ href=”touch-icon-iphone4.png” />    
  12. <link rel=”apple-touch-startup-image” href=”startup.png”>   
  13. <!--全屏啟動時候的啟動畫面圖像, 尺寸320X460 px  -->  
  14. <meta name=”apple-mobile-web-app-capable” content=”yes” />   
  15. <!--是否允許全屏顯示, 只有在桌面啟動時可用 -->   
  16. <meta name=”apple-mobile-web-app-status-bar-style” content=”black” />   
  17. <!--控制全屏時頂部狀態欄的外觀, 默認白色  -->  
  18. <input autocorrect=”off” autocomplete=”off” autocapitalize=”off”>    
  19. <!--取消自動完成, 自動大寫單詞字母(適用於Mobile上)  -->  
  20. <input type=”text” x-webkit-speech />   
  21. <!--語音輸入  -->  
  22. <input type=”file” accept = “image/*; capture=camera” />   
  23. <!--文件上傳, 從相機捕獲媒體, 下同 -->   
  24. <input type=”file” accept = “video/*; capture=camcorder” />    
  25. <input type=”file” accept = “audio/*; capture=microphone” />    
  26. <a href=”sms:18005555555,18005555556″]]>   
  27. <!--發送短信給多個人的鏈接 -->  
  28. <a href=”sms:18005555555?body=Text%20goes%20here”]]>   
  29. <!--發送短信附帶內容的鏈接 -->  
  30. <a href=”tel:18005555555″]]>Call us at 1-800-555-5555</a]]>   
copyright © 萬盛學電腦網 all rights reserved