Introduction to the use of HTML5 video video tags
This article mainly introduces the use of HTML5 video video tags. It has certain reference value. Now I share it with you. Friends in need can refer to it.
HTML video is suitable for HTML 5 and is used for Define video streaming media for online viewing. Here is a brief introduction for the convenience of friends who need it
HTML
Copy code
The code is as follows:
<video width="320" height="240" src="http://www.jb51.net/movie.ogg" controls="controls">
Here is the comment text. If HTML 5 cannot be supported, the browser will display it Text here. If supported, the video will be displayed directly and the text will be ignored.
In HTML 4 and before, if you want to embed a video for online viewing in a web page, you generally need to use Flash video streaming, by using
Properties | Value | Description |
---|---|---|
autoplay | autoplay | If this attribute appears, the video will be played immediately after it is ready. |
controls | controls | If this attribute appears, controls are displayed to the user, such as a play button. |
height | Pixel value | Sets the height of the video player. |
loop | loop | If this attribute appears, playback will start again after the media file completes playback. |
preload | auto/meta/none | Specifies whether to preload the video, possible values: auto - load when the page is loaded Load the entire video meta - only load metadata when the page loads none - do not load the video when the page loads |
* src | Video address | The URL of the video to be played, it is recommended to use an absolute address. |
width | Pixel value | Sets the width of the video player. |
如何写兼容的视频标签?
由于旧的浏览器和Internet Explorer不支持
复制代码
代码如下:
<video width="320" height="240" controls> <!-- 兼容 Firefox --> <source src="http://www.jb51.net/ movie.ogg" type="video/ogg" /> <!-- 兼容 Safari/Chrome--> <source src="http://www.jb51.net/ movie.mp4" type="video/mp4" /> <!-- 如果浏览器不支持video标签,则使用flash --> <embed src="http://www.jb51.net/ movie.swf" type="application/x-shockwave-flash" width="320" height="240" allowscriptaccess="always" allowfullscreen="true"></embed> </video>
相关推荐:
The above is the detailed content of Introduction to the use of HTML5 video video tags. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Guide to Table Border in HTML. Here we discuss multiple ways for defining table-border with examples of the Table Border in HTML.

This is a guide to Nested Table in HTML. Here we discuss how to create a table within the table along with the respective examples.

Guide to HTML margin-left. Here we discuss a brief overview on HTML margin-left and its Examples along with its Code Implementation.

Guide to HTML Table Layout. Here we discuss the Values of HTML Table Layout along with the examples and outputs n detail.

Guide to Moving Text in HTML. Here we discuss an introduction, how marquee tag work with syntax and examples to implement.

Guide to the HTML Ordered List. Here we also discuss introduction of HTML Ordered list and types along with their example respectively

Guide to HTML onclick Button. Here we discuss their introduction, working, examples and onclick Event in various events respectively.

Guide to HTML Input Placeholder. Here we discuss the Examples of HTML Input Placeholder along with the codes and outputs.
