added meta for Apple iOS and 360 browser

1. added `apple-itunes-app` for Apple iOS
2. added `renderer` for 360
This commit is contained in:
mastermay 2016-04-23 12:51:25 +08:00
parent afb1e4f18e
commit 0e722b6faf
1 changed files with 13 additions and 1 deletions

View File

@ -150,11 +150,12 @@ A collection of HTML head elements.
### Apple iOS
``` html
<meta name="format-detection" content="telephone=no">
<meta name="format-detection" content="telephone=no,email=no,adress=no">
<meta name="apple-mobile-web-app-title" content="My App">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-touch-fullscreen" content="yes">
<meta name="apple-itunes-app" content="app-id=myAppStoreID, affiliate-data=myAffiliateData, app-argument=myURL">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="apple-touch-icon-precomposed" href="apple-touch-icon-precomposed.png">
<link rel="apple-touch-startup-image" href="startup.png">
@ -193,6 +194,17 @@ A collection of HTML head elements.
<link rel="mask-icon" href="icon.svg" color="red">
```
### 360: the browser kernel control
```html
<meta name="renderer" content="webkit|ie-comp|ie-stand">
<!--
The value of content is WebKit, ie-comp, ie-stand, case sensitive, representing the WebKit kernel, IE compatible kernel, IE kernel.
If the default page required by extreme nuclear, add tags: <meta name="renderer" content="webkit">
If the page should be the default ie compatible kernel, add tags: <meta name="renderer" content="ie-comp">
If the page should be the default standard IE kernel, add tags: <meta name="renderer" content="ie-stand">
-->
```
## Other Resources
- [HTML5 Boilerplate Docs: The HTML](https://github.com/h5bp/html5-boilerplate/blob/master/dist/doc/html.md)