欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jquery初步认识-20140305

程序员文章站 2022-07-12 21:30:00
...
<html>
<!--这里是必须引入的只有引入了这些才能在手机端展示出正常的页面-->
<meta name="apple-touch-fullscreen" content="yes"> 
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0"> 
<meta name="apple-mobile-web-app-capable" content="yes"> 
<meta name="apple-mobile-web-app-status-bar-style" content="black"> 
<link rel="apple-touch-icon" href="http://a.tbcdn.cn/mw/s/hi/tbtouch/images/touch-icon.png">

<head>
<style>
xxxxxxx
</style>
</head>

<body>

//这种写法可以直接在手机端的页面下按下后直接触发拨打电话
<a href"tel:区号+电话号码">
</a>

</body>
</html>


<meta name="apple-touch-fullscreen" content="yes">
"添加到主屏幕“后,全屏显示

<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
width - viewport的宽度 height - viewport的高度
initial-scale - 初始的缩放比例
minimum-scale - 允许用户缩放到的最小比例
maximum-scale - 允许用户缩放到的最大比例
user-scalable - 用户是否可以手动缩放

<meta name="apple-mobile-web-app-capable" content="yes">
这meta的作用就是删除默认的苹果工具栏和菜单栏。content有两个值”yes”和”no”,当我们需要显示工具栏和菜单栏时,这个行meta就不用加了,默认就是显示。

<meta name="apple-mobile-web-app-status-bar-style" content="black">
默认值为default(白色),可以定为black(黑色)和black-translucent(灰色半透明)。
注意: 若值为“black-translucent”将会占据页面px位置,浮在页面上方(会覆盖页面20px高度–iphone4和itouch4的Retina屏幕为40px)。

<link rel="apple-touch-icon" href="http://a.tbcdn.cn/mw/s/hi/tbtouch/images/touch-icon.png">
说明: 这个link就是设置web app的放置主屏幕上icon文件路径。
图片尺寸可以设定为57*57(px)或者Retina可以定为114*114(px),ipad尺寸为72*72(px)