首页 > Web开发 > 详细

html5新特性总结

时间:2015-08-16 18:04:58      阅读:263      评论:0      收藏:0      [点我收藏+]

1. 新的文档类型

<!DOCTYPE html>

2. link 与script不需要类型了

<link rel="stylesheet" href="a/b/c.css" />
<script src="a.js" />

3. 语义化标签header与footer

4. Hgroup,将标题分组

5.高亮标签<mark>,配合js动作使用

6. 图形元素figure img figcaption,将图片与文字描述联系起来

7.<small> ,eg footer中的版权信息

8. placeholder

<input type="text" name="desplaceholder" placeholder="bxwlysy" />

9. required必要属性

<input type="text" name="desrequire" required />

10. autofocus自动聚焦

11. audio 

<audio autoplay="autoplay" controls="controls">
<source src="file.ogg" />
<source src="file.mp3"/>
</audio>

firefox支持.ogg webkit支持.mp3 ie不支持,opera10及以下支持.wav

12. video preload controls

html5新特性总结

原文:http://www.cnblogs.com/danranysy/p/4734534.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!