Summary of basic knowledge about HTML5 video
1. Basic attributes of the video tag
1.autoplay="autoplay": Specifies that the video will start playing as soon as it is ready
2.control="controls": Let the browser play the video The player provides default controls such as pause and progress bar. If this is set, self-defined controls cannot be used.
3.width="320" height="240": Define the width and height of the video player. Setting this will allow the page to reserve part of the space for the video player. If it is not set, it will not be retained at the beginning, which may cause Page layout confusion
4.loop="loop": Specifies the end of the video Playback will then restart
5.preload attribute: auto means loading the entire video after the page is loaded; meta only loads metadata; none: does not load the video
6.src: regulations The url of the video to be played, supported video formats: MP4/WebM/Ogg
2. Video commonly usedAPI
1.currentTime: Indicates the current playback time, which can be modified through js operations and reflected in the playback progress
2.load() method: load the video; play() method: play the video; pause () method: pause the video
3.volume: indicates the current sound size, which can be adjusted through js
4.muted: true means mute, false means not mute
5.playbackRate: Set the playback speed. The default is 1, which means playback in 1 second.
3. Use js to control the video instance
Get the corresponding< through the element selector ;video>Element: var myVideo = document.getElementById("video")
myVideo.play(): Let the video start playing; myVideo.pause(): Let the video stop playing
You can set the size of the video through myVideo.height and myVideo.width
4. Source tag
<video id=“video” width=“420”> <scource src=“a.mp4” type=“video/mp4”> <scource src=“a.ogg” type=“video/ogg”> </video>
[Related recommendations]
2. Solution to the H5 video tag that can only play sound but not video
3. Share a video tag The problem and solution of being unable to play mp4
4. Using the video element to create a video player in html 5
5. Detailed explanation of html5 video tag test application
The above is the detailed content of Summary of basic knowledge about HTML5 video. 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.
