Learn how to play audio
P粉760675452
P粉760675452 2023-08-21 11:45:13
0
2
581
<p>I'm making a game using HTML5 and JavaScript. </p> <p>How do I play game audio via JavaScript? </p>
P粉760675452
P粉760675452

reply all(2)
P粉635509719

It's easy, just get your audio element and call the play() method:

document.getElementById('yourAudioTag').play();

Check out this example: http://www.storiesinflight.com/html5/audio.html

This site reveals some other cool things like load(), pause() and audio elements some other attributes.

P粉512729862

If you don't want to deal with HTML elements:

var audio = new Audio('audio_file.mp3');
audio.play();

function play() {
  var audio = new Audio('https://interactive-examples.mdn.mozilla.net/media/cc0-audio/t-rex-roar.mp3');
  audio.play();
}
<button onclick="play()">播放音频</button>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!