崭新新的页面布局javascript
传统的:css
HTML5:html
尽管使用<!DOCTYPE html>
,即便浏览器不懂这句话也会按照标准模式去渲染前端
用<figure>
和<figcaption>
来语义化地表示带标题的图片html5
<figure> <img src="path/to/image" alt="About image" /> <figcaption> <p>This is an image of something interesting. </p> </figcaption> </figure>
<small>
<small>
已经被从新定义了,如今被用来表示小的排版,如网站底部的版权声明java
HTML5没有严格的要求属性必须加引号,闭合不闭合,可是建议加上引号和闭合标签正则表达式
若是咱们给Input的type设置为email,浏览器就会验证这个输入是不是email类型,固然不能只依赖前端的校验,后端也得有相应的校验后端
这个input属性的意义就是没必要经过javascript来作placeholder的效果了浏览器
使用Local Storage能够永久存储大的数据片断在客户端(除非主动删除),目前大部分浏览器已经支持,在使用以前能够检测一下window.localStorage是否存在ide
默认的,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");
通常在header里面用来将一组标题组合在一块儿,如
<header> <hgroup> <h1> Recall Fan Page </h1> <h2> Only for people who want the memory of a lifetime. </h2> </hgroup> </header>
required属性定义了一个input是不是必须的,你能够像下面这样声明
<input type="text" name="someInput" required>
或者
<input type="text" name="someInput" required="required">
正如它的词义,就是聚焦到输入框里面
<input type="text" name="someInput" placeholder="Douglas Quaid" required autofocus>
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>
和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>
preload属性就像它的字面意思那么简单,你须要决定是否须要在页面加载的时候去预加载视频
<video preload>
<video preload controls>
因为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>
元素看作是高亮的做用,当我选择一段文字的时候,javascript对于HTML的markup效果应该是这样的:
<h3> Search Results </h3> <p> They were interrupted, just after Quato said, <mark>"Open your Mind"</mark>. </p>
<div>
HTML5已经引入了这么多元素,那么div咱们还要用吗?div你能够在没有更好的元素的时候去用。
不要等2022了,如今就可使用了,just do it.
<div id="myDiv" data-custom-attr="My Value"> Bla Bla </div>
CSS中使用:
<style> h1:hover:after { content: attr(data-hover-response); color: black; position: absolute; left: 0; } </style>
<h1 data-hover-response="I Said Don’t Touch Me!"> Don’t Touch Me </h1>
<output>
元素用来显示计算结果,也有一个和label同样的for属性
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; }
原文来自:http://justjavac.com/html5/2012/04/05/25-html5-features-tips-and-techniques-you-must-know.html