Part1::新增的与结构相关的元素(主要是原来<div>元素的按照其功能进行了细分)
主体结构元素:
<section>元素:表示页面的一个内容区块
<article>元素:表示页面一块独立内容
<aside>元素:表示页面上<article>元素之外的但是与<article>相关的辅助信息
<nav>元素:表示页面中导航链接的部分
非主体结构元素:
<header>元素:表示页面中一个内容区块<section>或者整个页面的标题
<hgroup>元素:表示对于整个页面或者页面一个内容区块<section>的<header>进行组合
<footer>元素:表示对整个页面或者页面一个内容区块<session>的页脚
<figure>元素:表示一段独立的文档流内容
<figcaption>元素:表示<figure>元素的标题
Part2:新增的与结构无关的元素
<video>元素:用于定义视频,无需<object type="video/ogg">
<audio>元素:用于定义音频, 无需<object type="application/ogg">
<embed>元素:用于插入各种多媒体,可以各种格式
<mark>元素: 用于向用户在视觉上突出显示某些文字
<progress>元素:表示运行中的进程
<time>元素: 用于表示日期或者时间, 或者两者
<ruby>元素: 表示ruby注释
<rt>元素:表示字符的解释或者发音
<rp>元素:在<ruby>内使用,表示不支持<ruby>元素的浏览器所显示的内容
<wbr>元素:表示软换行,可以根据浏览器的窗口或者父级元素的宽度自己决定
<canvas>元素:表示画布,然后让脚本把想画的东西画在上面
<command>元素:表示命令按钮
<details>元素:表示当用户点击某元素时候想要得到的细节信息,常和<summary>元素联合使用
<summary>元素:是<details>元素的第一个子元素,表示了<details>的标题
<datalist>元素:表明了可以选择的数据列表,以下拉列表形式显示
<datagrid>元素:表明了可选的数据列表,但是以树列表的形式显示
<keygen>元素:表示生成密钥:
<output>元素:表示不同类型的输出
<source>元素:表示为<video><audio>等媒体元素定义资源
<menu>元素:表示了菜单列表
Part3:新增的<input>元素的类型:
<email>: 表示必须输入email地址的文本输入框
<url>:表示必须输入url地址的文本输入框
<number>:表示必须输入数值的文本输入框
<range>:表示必须输入一定范围内数字的文本输入框
Figure元素
用<figure>和<figcaption>来语义化地表示带标题的图片
<figure>
<img src=”path/to/p_w_picpath” alt=”About p_w_picpath” />
<figcaption>
<p>This is an p_w_picpath of something interesting. </p>
</figcaption>
</figure>
重新定义的<small>
<small>已经被重新定义了,现在被用来表示小的排版,如网站底部的版权声明
Email Inputs
如果我们给Input的type设置为email,浏览器就会验证这个输入是否是email类型,当然不能只依赖前端的校验,后端也得有相应的校验
Placeholders
这个input属性的意义就是不必通过javascript来做placeholder的效果了
Local Storage
使用Local Storage可以永久存储大的数据片段在客户端(除非主动删除),目前大部分浏览器已经支持,在使用之前可以检测一下window.localStorage是否存在
语义化的header和footer12. IE和HTML5
默认的,HTML5新元素被以inline的方式渲染,不过可以通过下面这种方式让
其以block方式渲染
header, footer, article, section, nav, menu, hgroup {
display: block;
}
不幸的是IE会忽略这些样式,可以像下面这样fix:
document.createElement(”article”);
document.createElement(”footer”);
document.createElement(”header”);
document.createElement(”hgroup”);
document.createElement(”nav”);
document.createElement(”menu”);
hgroup
一般在header里面用来将一组标题组合在一起,如
<header>
<hgroup>
<h2> Recall Fan Page </h2>
<h3> Only for people who want the memory of a lifetime. </h3>
</hgroup>
</header>
Required属性
required属性定义了一个input是否是必须的,你可以像下面这样声明
<input type=”text” name=”someInput” required>
或者
<input type=”text” name=”someInput” required=”required”>
Autofocus属性
正如它的词义,就是聚焦到输入框里面
<input type=”text” name=”someInput” placeholder=”Douglas Quaid” required autofocus>
Audio支持
HTML5提供了<audio>标签,你不需要再按照第三方插件来渲染音频,大多数现代浏览器提供了对于HTML5 Audio的支持,不过目前仍旧需要提供一些兼容处理,如
<audio autoplay=”autoplay” controls=”controls”>
<source src=”file.ogg” /><!–FF–>
<source src=”file.mp3″ /><!–Webkit–>
<a href=”file.mp3″>Download this file.</a>
</audio>
Video支持
和Audio很像,<video>标签提供了对于video的支持,由于HTML5文档并没有给video指定一个特定的编码,所以浏 览器去决定要支持哪些编码,导致了很多不一致。Safari和IE支持H.264编码的格式,Firefox和Opera支持Theora和Vorbis 编码的格式,当使用HTML5 video的时候,你必须都提供:
<video controls preload>
<source src=”cohagenPhoneCall.ogv” type=”video/ogg; codecs=’vorbis, theora’” />
<source src=”cohagenPhoneCall.mp4″ type=”video/mp4; ’codecs=’avc1.42E01E, mp4a.40.2′” />
<p> Your browser is old. <a href=”cohagenPhoneCall.mp4″>Download this video instead.</a> </p>
</video>
正则表达式
由于pattern属性,我们可以在你的markup里面直接使用正则表达式了
<form action=”" method=”post”>
<label for=”username”>Create a Username: </label>
<input type=”text” name=”username” id=”username” placeholder=”4 <> 10″ pattern=”[A-Za-z]{4,10}” autofocus required>
<button type=”submit”>Go </button>
</form>
检测属性支持
除了Modernizr之外我们还可以通过javascript简单地检测一些属性是否支持,如:
<script>
if (!’pattern’ in document.createElement(’input’) ) {
// do client/server side validation
}
</script>
Mark元素
把<mark>元素看做是高亮的作用,当我选择一段文字的时候,javascript对于HTML的markup效果应该是这样的:
<h4> Search Results </h4>
<p> They were interrupted, just after Quato said, <mark>”Open your Mind”</mark>. </p>
什么时候用<div>
HTML5已经引入了这么多元素,那么div我们还要用吗?div你可以在没有更好的元素的时候去用。
哪些不是HTML5
1)SVG
2)CSS3
3)Geolocation
4)Client Storage
5)Web Sockets
26. Data属性
<div id=”myDiv” data-custom-attr=”My Value”> Bla Bla </div>
CSS中使用:
<style>
h2:hover:after {
content: attr(data-hover-response);
color: black;
position: absolute;
left: 0;
}
</style>
<h2 data-hover-response=”I Said Don’t Touch Me!”> Don’t Touch Me </h2>
27. Output元素
<output>元素用来显示计算结果,也有一个和label一样的for属性
28. 用Range Input来创建滑块
HTML5引用的range类型可以创建滑块,它接受min, max, step和value属性
可以使用css的:before和:after来显示min和max的值
<input type=”range” name=”range” min=”0″ max=”10″ step=”1″ value=”">
input[type=range]:before { content: attr(min); padding-right: 5px;
}
input[type=range]:after { content: attr(max); padding-left: 5px;}
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。