HTML,CSS,Javascript in iPhone (转自 koubei F2E 善朋)
原链接如下:
http://www.slideshare.net/supersha/htmlcssjavascript-in-iphone
HTML,CSS,Javascript in iPhone - Presentation Transcript
1. Koubei F2E 善朋
2010.04.20
2.
3. iPhone 3G
S
4. 爱上iPhone 3G的理由
功能创新的电话
通过 iPhone 上的 Multi-Touch 用户界面,你在通讯录、个人收藏、通话记录或者其他几乎任何地方中轻点名字或号码就可以直接进行拨号。
宽屏 iPod
配备 3.5 英寸亮丽的显示屏,iPhone 上的内容 ─ 包括音乐、照片和视频等将显得更加出色。手指轻扫即可浏览歌曲和播放列表,使用 Cover Flow 欣赏你的专辑封面。
突破性的上网装置
通过高速 3G 网络,iPhone 支持 HTML 邮件和先进的 Safari 网络浏览器,并内置搜索功能,为你带来移动装置上前所未有的互联网体验。iPhone 擅长多任务操作,你能够一边打电话,一边发送邮件或者上网。
方向感应器,Multi-Touch,智能键盘和中文输入。。。
5. border-radius
background-origin
background-clip
text-shadow
box-shadow
first-child
last-child
……
Happy Ending…
6. iPhone手机网站开发总结
1. HTML的head标签内需要显示声明meta属性:<meta name=”viewport” content=”width=device-width; minimum-scale=1.0; maximum-scale=1″ />,minimum-scale和maximum-scale主要作用是控制内容的显示比例。
2. 在使用css3的时候,要通过-khtml为前缀的方式,-webkit的方式不管用。比如:-khtml-border-radius。
3. 对css的inline-block支持不是很良好。
4. 没有:hover状态,不过可以通过iphone的ontouchstart和ontouchend两个独有的事件来模拟触屏特效。
5. 在横屏和竖屏的情况下,字体会发生变化。这可以通过在html中用css的属性:-webkit-text-size- adjust:none; if (document.cookie.indexOf("iphone_redirect=false") == -1) {
window.location= “http://www.example.com/iphone/";
}
}
Touch Events
iPhone 是使用触屏的方式,所以就需要有手触屏和离开的时候的事件机制,幸好,iPhone做好了这方面的工作,提供了四个处理touch的事件:touchstart,touchend,touchmove,touchcancel(when the system cancels the touch)
Gestures
即是指两只手指接触屏幕的时候缩放或者旋转的效果,对于侦听gestures,iPhone也有三个事件:gesturestart,gestureend,gesturechange。
同时事件参数event有两个属性:scale,rotate。Scale的中间值是1,大于1表示放大,小于1表示缩小。
侦测设备旋转方向
iPhone可以在横屏状态下浏览网页,有时候你会想知道用户设备的手持状态来增强可用性和功能。
iPhone/iPad中都有一个window.orientation的属性来判断在页面onload的时候设备向哪个方向旋转。
10. HTML
viewport的声明的作用:tells Safari that the viewport should be the same size as the iPhone screen。
CSS3媒体查询
对于CSS3的媒体(media)查询,iPhone和iPad是不同的。通过这个技术,可以对设备不同的握持方向应用不同的样式,增强功能和体验。
iPhone是通过屏幕最大宽度来侦测的。是这样:
<link rel="stylesheet" media="screen and (max-width: 320px)" href="portrait.css" />
<link rel="stylesheet" media="screen and (min-width: 321px)" href="landscape.css" />
而iPad有点不同,它直接使用了媒体查询中的orientation属性。是这样:
<link rel="stylesheet" media="screen and (orientation:portrait)" href="portrait.css" />
<link rel="stylesheet" media="screen and (orientation:landscape)" href="landscape.css" />