


In html5, set or return the attribute autoplay of whether the audio and video will start playing after loading.
Example
Enable autoplay and reload Video:
myVid=document.getElementById("video1"); myVid.autoplay=true; myVid.load();
Definition and usage
autoplay PropertiesSettings Or returns whether the audio and video starts playing after loading.
Browser support
All major browsers support the autoplay attribute.
Note: Internet Explorer 8 or earlier browsers do not support this attribute.
Syntax
Set the autoplay attribute:
audio|video.autoplay=true|false
Return the autoplay attribute:
audio|video.autoplay
Attribute value
Value | Description |
true | Indicates that the audio and video will be played immediately after loading. |
false | Default. Indicates that the audio and video should not play immediately after loading. |
Technical Details
Return Value | Boolean value. true|false |
Default value: | false |
html5 video uses the autoplay attribute, the sound is confusing
Page code
Index.html
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>test</title> <meta charset='utf-8'/> <script src="js/jquery-1.4.4.min.js" type="text/javascript"></script> <script src="js/thml5.js" type="text/javascript"></script> <script type="text/javascript"> window.onload=function(){ $('#channel1').click(function(){ setConfig("test1.mp4"); }); $('#channel2').click(function(){ setConfig("test2.mp4"); }); $('#channel3').click(function(){ setConfig("test3.mp4"); }); } function setConfig(url){ var jo=$('#test1'); var cfg=HTML5MediaService.getDefaultConfig(); cfg=$.extend(cfg, {url: url}); HTML5MediaService.create(jo,cfg); } </script> </head> <body> <div id='test1' style="height:300px;width:500px;"> </div> </br> </br> </br> <div> <span id='channel1'>频道1</span> <span id='channel2'>频道2</span> <span id='channel3'>频道3</span> </div> </body> </html>
js code
html5.js
var HTML5MediaService= { getDefaultConfig: function () { return $.extend({}, {width: "100%", height: "100%", controls: "controls", autoplay: "autoplay"}); }, create:function(jo,cfg){ this.videoId = "videojs_" + new Date().getTime().toString(); var videoJo = $('<video' + ' id="' + this.videoId + '"' + ' src=' + cfg.url + ' controls=' + cfg.controls + ' autoplay=' + cfg.autoplay + ' width=' + cfg.width + ' height=' + cfg.height + ' preload=none' + '></video>'); videoJo.appendTo(jo.empty()); } }
My solution:
Take To disable autoplay, you can use the play() function to achieve the automatic playback function;
The above is the detailed content of In html5, set or return the attribute autoplay of whether the audio and video will start playing after loading.. 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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

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 HTML Input Placeholder. Here we discuss the Examples of HTML Input Placeholder along with the codes and outputs.

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

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

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