html5——meta标签

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

 

width: viewport 的宽度 (范围从 200 到 10,000 ,默认为 980 像素 )

height: viewport 的高度 (范围从 223 到 10,000 )

initial-scale: 初始的缩放比例 (范围从>0到 10 )

minimum-scale: 允许用户缩放到的最小比例

maximum-scale: 允许用户缩放到的最大比例

user-scalable: 用户是否可以手动缩放

是否删除默认的苹果工具栏和菜单栏

当设置了app形式之后,作用是控制状态栏显示样式

iphone会把一串数字识别为电话号码,点击的时候会提示是否呼叫,屏蔽这功能则把telephone设置为no,要启用电话功能,请使用Call Me : 13888888888来代替,邮件则为发送邮件

其他的meta设置

<meta name="renderer" content="webkit">

<meta http-equiv="X-UA-Compatible" content="IE=edge">

<meta name="HandheldFriendly" content="true">

<

meta name="MobileOptimized" content="320">

<meta name="screen-orientation" content="portrait">

<meta name="x5-orientation" content="portrait">

<meta name="full-screen" content="yes">

<meta name="x5-fullscreen" content="true">

<meta name="browsermode" content="application">

<meta name="x5-page-mode" content="app">

<meta name="msapplication-tap-highlight" content="no">

此外,apple还有两个有趣的标签:

 1. apple-touch-icon

如果apple-mobile-web-app-capable设置为yes了,那么在苹果机的safari上可以通过添加到主屏按钮将网站添加到主屏幕上。而设置相应apple-touch-icon标签,则添加到主屏上的图标就会使用我们指定的图片。

  2. apple-touch-startup-image

基于apple-mobile-web-app-capable设置为yes,可以为WebApp设置一个类似NativeApp的启动画面。和apple-touch-icon不同,apple-mobile-web-app-capable不支持sizes属性,要使用media来加载不同的启动画面。详细查询大漠的文章。

// iPhone

<link href="apple-touch-startup-image-320x460.png" media="(device-width: 320px)" rel="apple-touch-startup-image" />

// iPhone Retina

<link href="apple-touch-startup-image-640x920.png" media="(device-width: 320px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />

所以,对于移动端,把通用的起始模板写成sublime的snippet:

<snippet>     

<content>

[CDATA[>

<html lang="en">

<head> 

<meta charset="UTF-8"/>       

<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, minimal-ui" />

<meta name="apple-mobile-web-app-capable" content="yes" />

<meta name="apple-mobile-web-app-status-bar-style" content="black" />   

<meta name="format-detection"content="telephone=no, email=no" />  

<title>标题title>

head>

<body>         主体

body>

html>

content>    

<tabTrigger>mhdtabTrigger>  

<description>Mobile Framedescription>       <scope>text.htmlscope>

snippet>

 

转载于:https://my.oschina.net/u/165172/blog/396782

你可能感兴趣的:(html5——meta标签)