Home>Article>Web Front-end> HTML5 collection

HTML5 collection

php中世界最好的语言
php中世界最好的语言 Original
2018-03-09 09:45:19 2314browse

This time I bring you a collection of HTML5. What are theprecautionswhen using HTML5? Here are practical cases, let’s take a look.

1. Added elements to HTML5:

  用于图形绘制,通过脚本(常用JS)来完成;具体请参考JavaScript;     矢量图,支持内联;   用于书写数学字符;  显示视频;(支持MP4,WebM,Ogg);内容里边需要有sorce标签给定的源文件;具体请参考JavaScript;  显示视频;(支持MP3,wav,Ogg);内容里边需要有sorce标签给定的源文件;具体请参考JavaScript;  定义media元素 (

2. New elements and attributes

(1) New attributes in the new d5fd7aea971a85678ba271703566ebfd tag:

type属性新增值: color    颜色选择框; date 日期选择器(部分浏览器不支持); datetime-local 日期和时间选择器; time 时间选择器; week    周选择器; email 邮件地址验证; url url验证; month   月份选择; number   数值输入,可用以下属性进行更多限定, disabled,max,min,maxlengh,pattern(正则表达式),readonly,requried,size,step,value; range 数值选择,显示为一个滑块,需用更多属性进行限定:max,min,step,value; autofocus 不需要值,如果给定此属性,则在加载页面时输入域自动获得焦点; form 设置输入域属于某一个或多个表单,多个表单之间用空格分隔; formaction 值会覆盖
元素中的action属性; formenctype 值会覆盖元素中的enctype属性; formmethod 值会覆盖元素中的method属性; formnovalidate 值会覆盖元素中的novalidate属性; formtarget 值会覆盖元素中的target属性; height 设置image类型标签高度; width 设置image类型标签宽度; multiple 不需要值,如果给定此属性,则在输入元素中可选择多个值; pattern 值为正则表达式,用来验证输入值; placeholder 值为用来显示在输入域中来提示用户; requried 不需要值,如给定此属性,则输入不能为空;

(2) New form elements:

 一起使用,来设定预定义值,每个值用

(3) New semantic elements;

Semantic elements are used to identify different parts of a Web page;

定义导航链接的部分;
定义文档中的节;
标签定义独立的内容; 定义页面主区域内容之外的内容;
元素的标题,应该被置于 "figure" 元素的第一个或最后一个子元素的位置;
标签规定独立的流内容(图像、图表、照片、代码等等),元素的内容应该与主内容相关,但如果被删除,则不应对文档流产生影响。
描述了文档的底部区域;

(4) New global attributes:

contenteditable 元素是否可编辑,值有true,false; contextmenu 指定一个元素的上下文菜单。当用户右击该元素,出现上下文菜单,值为要打开元素的id; data-* 存储页面的自定义数据; draggable 元素是否可拖动,值有true,false,auto;5 hidden

(5) New storage method:

localStorage 本地存储,永久性的; sessionStrorage 针对一个 session 进行数据存储。当用户关闭浏览器窗口后,数据会被删除;

But both methods are implemented through scripts;

3. Global event attributes (supported after HTML4, mainly used for scripts run after the browser triggers the event, the values are all script):

1. Window event attributes

onafterprint 打印文档后运行脚本; onbeforeprint 打印文档前; onbeforeonload 文档加载前; onload 文档加载时; onoffline 文档离线时; ononline 文档上线时; onhaschange 文档改变时; onredo 文档再次执行时; onundo 文档执行撤销时; onerror 出现错误时; onmessage 触发消息时; onunload 用户离开文档时; onblur 窗口失去焦点时; onfocus 窗口获得焦点时; onpagehide 窗口隐藏时; onpageshow 窗口可见时; onpopstate 窗口历史记录改变时; onresize 窗口大小改变时; onstorage web storage区域更新时;

Believe it or not After reading the case in this article, you have mastered the method. For more exciting information, please pay attention to other related articles on the PHP Chinese website!

Related reading:

Use React to complete an image carousel component

How to use 3499910bf9dac5ae3c52d5ede7383485 in HTML Tags to write personal favorites

The above is the detailed content of HTML5 collection. 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