Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

เสียง HTML5 เพื่อเล่นแบบสุ่ม


หากต้องการเล่นแบบสุ่ม ให้เพิ่มเพลงแบบนี้ −

init ([
   'https://demo.com/songs/song1.mp3,
   'https://demo.com/songs/song2.mp3,
   'https://demo.com/songs/song3.mp3
]);

ใช้สิ่งต่อไปนี้เพื่อเล่นแบบสุ่มโดยใช้ Math.random -

function displayRandom() {
   var audio = Math.floor(Math.random() * (collection.length));
   audio = collection[audio];
   audio.play();
   setTimeout(loop,audio.duration*1000);
}