Home  >  Article  >  Web Front-end  >  Detailed introduction of 28 new features of h5

Detailed introduction of 28 new features of h5

零下一度
零下一度Original
2017-05-12 12:02:072880browse

1. New Doctype

Even if you use 8b05045a5be5764f313ed5b9168a17e6, even if the browser does not understand this sentence, it will render it in standard mode

You can also consider using the weird box pattern

2. Figure element
Use 24203f2f45e6606542ba09fd2181843a and 614eb9dc63b3fb809437a716aa228d24 to semantically represent Picture with title

”About

This is an image of something interesting.

3. Redefined d015d241ae6d34c34210679b5204fe85
d015d241ae6d34c34210679b5204fe85 has been redefined and is now used to mean Small typesetting, 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 does not have strict requirements for attributes Add quotes, close or not, 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 When 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
Using Local Storage can permanently store large data fragments on the client (unless Active deletion), currently supported by most browsers, 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, HTML5 new elements are rendered inline, but you can use the following method to
render them in block

header, footer, article, section, nav, menu, hgroup { 
display: block; 
}

Unfortunately IE will ignore 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

Recall Fan Page

Only for people who want the memory of a lifetime.

14. Required attribute
The required attribute defines whether an input is required. You can declare

or

# as follows ##15. Autofocus attribute Just like its meaning, it is to focus on the input box

16. Audio support HTML5 provides b97864c2e0ef2353a16c4d64c7734e92 tag, you no longer need to follow third-party plug-ins to render
audio. Most modern browsers provide support for HTML5 Audio, but currently you still need to provide some compatibility processing, such as

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 to support it. Which encoding caused 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:

18. PreloadingVIDEO The preload attribute is as simple as its literal meaning. You need to decide whether you need to preload the video when the page loads

19. Display video Control

20. Regular Expression Due to the pattern attribute, we can use regular expressions directly in your markup

10″ pattern=”[A-Za-z]{4,10}” autofocus required>

21. Detecting attribute support In addition to Modernizr, we can also simply detect whether some attributes are supported through javascript, such as:

22. Mark element Think of the f920514e6447cf1d171079d1371f007f element as a highlight. When I select a piece of text, the markup effect of javascript on HTML should be like this:

Search Results

They were interrupted, just after Quato said, ”Open your Mind”.

23. When to use e388a4556c0f65e1904146cc1a846bee HTML5 has introduced so many elements, so do we still need to use p? You can use p when there is no better element.

24. Want to use HTML5 immediately? Don’t wait for 2022, you can use it now, just do it.

25. What is not HTML5 1)SVG
2)CSS3
3)Geolocation
4)Client Storage
5)Web Sockets

26. Data attribute

Bla Bla

Used in CSS:

 

Don’t Touch Me

27. Output元素 
be6d67dae90cc1ad6469079e163d0939元素用来显示计算结果,也有一个和label一样的for属性 
28. 用Range Input来创建滑块 
HTML5引用的range类型可以创建滑块,它接受min, max, step和value属性 
可以使用css的:before和:after来显示min和max的值     

 
input[type=range]:before { content: attr(min); padding-right: 5px; 
} 
input[type=range]:after { content: attr(max); padding-left: 5px;}

【相关推荐】

1. 免费h5在线视频教程

2. HTML5 完整版手册

3. php.cn原创html5视频教程

The above is the detailed content of Detailed introduction of 28 new features of h5. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn