Home Web Front-end H5 Tutorial Summary of basic knowledge about HTML5 video

Summary of basic knowledge about HTML5 video

May 19, 2017 pm 04:59 PM

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

settings can be placed within the

<video id=“video” width=“420”>
    <scource src=“a.mp4” type=“video/mp4”>
    <scource src=“a.ogg” type=“video/ogg”>
</video>
Copy after login

[Related recommendations]

1. The MIME of IIS does not register the MP4 type, resulting in unrecognizable Solution to the vidoe tag

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!

Statement of this Website
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Table Border in HTML Table Border in HTML Sep 04, 2024 pm 04:49 PM

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

Nested Table in HTML Nested Table in HTML Sep 04, 2024 pm 04:49 PM

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.

HTML margin-left HTML margin-left Sep 04, 2024 pm 04:48 PM

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

HTML Table Layout HTML Table Layout Sep 04, 2024 pm 04:54 PM

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

Moving Text in HTML Moving Text in HTML Sep 04, 2024 pm 04:45 PM

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

HTML Ordered List HTML Ordered List Sep 04, 2024 pm 04:43 PM

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

HTML onclick Button HTML onclick Button Sep 04, 2024 pm 04:49 PM

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

HTML Input Placeholder HTML Input Placeholder Sep 04, 2024 pm 04:54 PM

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

See all articles