前面有一篇文章介紹了HTML5的一些新特性以及技巧, 現再來總結一些更多的針對webkit的HTML, CSS和Javascript方面的特性.
HTML, 從HTML文檔的開始到結束排列:
XML/HTML Code復制內容到剪貼板
- <meta name=”viewport” content=”width=device-width, initial-scale=1.0″/>
- <!--讓內容的寬度自適應為設備的寬度, 在做Mobile Web時必須加的一條 -->
- <meta name=”format-detection” content=”telephone=no”]]>
- <!--禁用手機號碼鏈接(for iPhone) -->
- <link rel=”apple-touch-icon” href=”icon.png”/>
- <!--設置你網頁的圖標, 尺寸為57X57 px -->
- <!– iOS 2.0+: tell iOS not to apply any glare effects to the icon –>
- <link rel=”apple-touch-icon-precomposed” href=”icon.png”/>
- <!– iOS 4.2+ icons for different resolutions –>
- <link rel=”apple-touch-icon” sizes=”72×72″ href=”touch-icon-ipad.png” />
- <link rel=”apple-touch-icon” sizes=”114×114″ href=”touch-icon-iphone4.png” />
- <link rel=”apple-touch-startup-image” href=”startup.png”>
- <!--全屏啟動時候的啟動畫面圖像, 尺寸320X460 px -->
- <meta name=”apple-mobile-web-app-capable” content=”yes” />
- <!--是否允許全屏顯示, 只有在桌面啟動時可用 -->
- <meta name=”apple-mobile-web-app-status-bar-style” content=”black” />
- <!--控制全屏時頂部狀態欄的外觀, 默認白色 -->
- <input autocorrect=”off” autocomplete=”off” autocapitalize=”off”>
- <!--取消自動完成, 自動大寫單詞字母(適用於Mobile上) -->
- <input type=”text” x-webkit-speech />
- <!--語音輸入 -->
- <input type=”file” accept = “image/*; capture=camera” />
- <!--文件上傳, 從相機捕獲媒體, 下同 -->
- <input type=”file” accept = “video/*; capture=camcorder” />
- <input type=”file” accept = “audio/*; capture=microphone” />
- <a href=”sms:18005555555,18005555556″]]>
- <!--發送短信給多個人的鏈接 -->
- <a href=”sms:18005555555?body=Text%20goes%20here”]]>
- <!--發送短信附帶內容的鏈接 -->
- <a href=”tel:18005555555″]]>Call us at 1-800-555-5555</a]]>
-