Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use the audio tag of html5

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces "how to use the audio tag of html5". In the daily operation, I believe many people have doubts about how to use the audio tag of html5. The editor consulted all kinds of information and sorted out a simple and easy-to-use method of operation. I hope it will be helpful to answer the doubt of "how to use the audio tag of html5". Next, please follow the editor to study!

The code is as follows:

Tag attributes: src: URL preload of music: preload auto playback: auto playback loop: loop playback control: browser's own control bar

Tag attribute: src: video URLposter: video cover, no picture preload displayed during playback: preload auto playback: auto playback loop: loop playback control: browser's own control bar width: video width height: video height

Get HTMLVideoElement and HTMLAudioElement objects

Copy the code

The code is as follows:

/ / audio can create objects directly through new

Media = newAudio ("http://www.abc.com/test.mp3")

/ / both audio and video can obtain objects through tags

Media = document.getElementById ("media")

Media methods and properties:

Both HTMLVideoElement and HTMLAudioElement inherit from HTMLMediaElement

Copy the code

The code is as follows:

/ / error status

Media.error; / / null: normal

Media.error.code; / / 1 . The user terminates 2. Network error 3. Decoding error 4.URL is invalid

/ / Network status

Media.currentSrc; / / returns the URL of the current resource

Media.src = value; / / returns or sets the URL of the current resource

Media.canPlayType (type); / / whether it can be played

Resource Media.networkState; / / 0 in some format. This element is not initialized 1. Normal but not using network 2. Downloading data 3. No resources found

Media.load (); / / reload the resources specified by src

Media.buffered; / / returns the buffered region, TimeRanges

Media.preload; / / none: do not preload metadata: preload resource information auto:

/ / status of preparation

Media.readyState; / / 1:HAVE_NOTHING 2:HAVE_METADATA 3.HAVE_CURRENT_DATA 4.HAVE_FUTURE_DATA 5.HAVE_ENOUGH_DATA

Media.seeking; / / are you looking for

/ status

Media.currentTime = value; / / the position of the current player. The position can be changed by assigning values.

Media.startTime; / / is generally 0, but not 0 if it is a streaming media or a resource that does not start from 0

Media duration; / / current resource length stream returns infinite

Media.paused; / / whether to pause

Media.defaultPlaybackRate = value; / / alternate playback speed, which can be set

Media.playbackRate = value; / / current playback speed, which will be changed immediately after setting

Media.played;// returns the area that has been played, TimeRanges. For this object, see this

Media.seekable; / / returns the area TimeRanges that can be searched

Media.ended; / / whether to end or not

Media.autoPlay; / / whether to play automatically

Media.loop; / / whether to play in a loop or not

Media.play (); / / playback

Media.pause (); / / pause

/ / Control

Media.controls; / / whether there is a default control bar

Media.volume = value; / / Volume

Media.muted = value; / / mute

/ / TimeRanges (region) object

Number of TimeRanges.length; / / region segments

TimeRanges.start (index) / / start position of the first index segment area

TimeRanges.end (index) / / the end of the first index segment area

Events:

EventTester = function (e) {

Media.addEventListener (eQuery function () {

Console.log ((newDate ()). GetTime (), e)

})

}

EventTester ("loadstart"); / / the client starts to request data

EventTester ("progress"); / / the client is requesting data

EventTester ("suspend"); / / delayed download

EventTester ("abort"); / / the client initiatively terminates the download (not caused by an error)

EventTester ("error"); / / when requesting data

Encountered error eventTester ("stalled"); / / Network speed stall

Triggered when eventTester ("play"); / / play () and autoplay start playing

EventTester ("pause"); / / pause () triggers

EventTester ("loadedmetadata"); / / obtain the resource length successfully

EventTester ("loadeddata"); / /

EventTester ("waiting"); / / wait for data

Not error eventTester ("playing")

/ / start playback of eventTester ("canplay"); / / can be played, but may be paused due to loading

EventTester ("canplaythrough"); / / can be played, and all the songs have been loaded

EventTester ("seeking"); / / searching

EventTester ("search"); / / search completed

EventTester ("timeupdate"); / / playback time change

EventTester ("ended"); / / end of playback

EventTester ("ratechange"); / / playback rate change

EventTester ("durationchange"); / / Resource length change

EventTester ("volumechange"); / / Volume change

A paragraph of js written by myself:

Copy the code

The code is as follows:

$(function () {)

Var p = new Player ()

P.read ("play")

$("# stop") Click (function () {

P.pause ()

})

$("# start") Click (function () {

P.play ()

})

$("# show") Click (function () {

Alert (p.duration ())

})

SetInterval (function () {

$("# currentTime") Text (p.currentTime ())

}, 1000)

})

Function Player () {}

Player.prototype = {

Box:new Object ()

Read:function (id) {

This.box = document.getElementById (id)

}

Play:function () {

This.box.play ()

}

Pause:function () {

This.box.pause ()

}

Src:function (url) {

This.box.src = url

}

CurrentTime:function () {

Return (this.box.currentTime / 60) .tofixed (2)

}

}

Player.prototype.duration = function () {

Return (this.box.duration / 60) .tofixed (2)

}

At this point, the study on "how to use the audio tag of html5" is over. I hope to be able to solve your doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report