Home > Article > Web Front-end > Detailed explanation of 28 very important new features, new techniques and new technologies of H5
HTML5 has a lot of new features. New code. Very good. Now summarize it. For reference only1. New Doctype
Although use 8b05045a5be5764f313ed5b9168a17e6, even if the browser does not If you understand this sentence, you will render it according to the standard mode
2. Figure element
Use 24203f2f45e6606542ba09fd2181843a and 614eb9dc63b3fb809437a716aa228d24 to semantically represent pictures with captions
< ;figure>
90acc3533502c3d42292e3dd9a88d945
614eb9dc63b3fb809437a716aa228d24
e388a4556c0f65e1904146cc1a846beeThis is an image of something interesting. < ;/p>
c03477f35900935b9be6780eb373f61c
44cb5dd5d12e801e7386125f9c811d57
3. Redefined d015d241ae6d34c34210679b5204fe85
d015d241ae6d34c34210679b5204fe85 has been redefined , is now used to represent small layouts, such as the copyright statement at the bottom of the website
4. Remove the type attribute in the link and script tags
5. Add/without brackets
HTML5 There is no strict requirement that attributes must be quoted or closed, but it is recommended to add quotes and closing tags
6. To make your content editable, just add a contenteditable attribute
7. Email Inputs
If we set the input type to email, the browser will verify whether the input is of email type. Of course, we cannot just rely on the front-end verification, the back-end must also have corresponding verification
8. Placeholders
The meaning of this input attribute is that there is no need to use javascript to achieve the placeholder effect
9. Local Storage
Use Local Storage to permanently store large data Fragments are on the client side (unless deleted actively). Most browsers currently support it. You can check whether window.localStorage exists before using it.
10. Semantic header and footer
11. More HTML5 form features
12. IE and HTML5
By default, new HTML5 elements are rendered inline, but you can
render them in block mode through the following method
header, footer, article, section, nav, menu, hgroup {
display: block;
}
Unfortunately, IE ignores these styles. You can fix them as follows:
document.createElement( "article");
document.createElement("footer");
document.createElement("header");
document.createElement("hgroup");
document.createElement("nav ”);
document.createElement(”menu”);
13. hgroup
is generally used in the header to group a group of titles together, such as
<header> <hgroup> <h1> Recall Fan Page </h1> <h2> Only for people who want the memory of a lifetime. </h2> </hgroup> </header>
14. Required attribute
The required attribute defines whether an input is required. You can declare it like the following
5f8bb8405429608fd05365c47beab100
or
7b4fa48630a12f9bea5d7c50cb9f3814
15. Autofocus attribute
Just like its meaning , that is, focus on the input box
9066d1c62bd47b07e55b07d2b4f0f973
16. Audio support
provided by HTML5 With the b97864c2e0ef2353a16c4d64c7734e92 tag, you no longer need to follow a third-party plug-in to render audio. Most modern browsers provide support for HTML5 Audio, but currently you still need to provide some compatibility processing, such as
<audio autoplay=”autoplay” controls=”controls”> <source src=”file.ogg” /><!–FF–> <source src=”file.mp3″ /><!–Webkit–> <a href=”file.mp3″>Download this file.</a> </audio>
17. Video support
Much like Audio, the 39000f942b2545a5315c57fa3276f220 tag provides support for video. Since the HTML5 document does not specify a specific encoding for video, the browser decides Which encodings should be supported resulted in a lot of inconsistencies. Safari and IE support H.264 encoding format, Firefox and Opera support Theora and Vorbis encoding format. When using HTML5 video, you must provide both:
<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>
18. Preliminary Loading the video
The preload attribute is as simple as it sounds. You need to decide whether you need to preload the video when the page loads.
c656b4ec1a629f3b222142499544fb13
19. Show Video control
26e316d9d0ecad41766ded9479499daf
20. Regular expression
Because of the pattern attribute, we can use regular expressions directly in your 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>
21. Detecting attribute support
In addition to Modernizr, we can also simply detect whether some attributes are supported through javascript, such as:
<script> if (!’pattern’ in document.createElement(’input’) ) { // do client/server side validation } </script>
22. Mark元素
把f920514e6447cf1d171079d1371f007f元素看做是高亮的作用,当我选择一段文字的时候,javascript对于HTML的markup效果应该是这样的:
684271ed9684bde649abda8831d4d355 Search Results 39528cedfa926ea0c01e69ef5b2ea9b0
e388a4556c0f65e1904146cc1a846bee They were interrupted, just after Quato said, f920514e6447cf1d171079d1371f007f”Open your Mind”ee15d5864733761b2441a93ca4c07fdb. 94b3e26ee717c64999d7867364b1b4a3
23. 什么时候用e388a4556c0f65e1904146cc1a846bee
HTML5已经引入了这么多元素,那么p我们还要用吗?p你可以在没有更好的元素的时候去用。
24. 想立即使用HTML5?
不要等2022了,现在就可以使用了,just do it.
25. 哪些不是HTML5
1)SVG
2)CSS3
3)Geolocation
4)Client Storage
5)Web Sockets
26. Data属性
<p id=”myp” data-custom-attr=”My Value”> Bla Bla </p> 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>
27. Output元素
be6d67dae90cc1ad6469079e163d0939元素用来显示计算结果,也有一个和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;}
【相关推荐】
1. HTML5免费视频教程
3. 教你用H5绘图的基础方法
The above is the detailed content of Detailed explanation of 28 very important new features, new techniques and new technologies of H5. For more information, please follow other related articles on the PHP Chinese website!