HTML5 Video Autoplay not working correctly

后端 未结 7 1269
鱼传尺愫
鱼传尺愫 2020-12-09 08:19

Im using this code:

7条回答
  •  感动是毒
    2020-12-09 09:04

    //You might want to add some scripts if your software doesn't support jQuery or giving any reference type error.

    //Use above scripts only if the software you are working on doesn't support jQuery.

    $(document).ready(function() { //Change the location of your mp3 or any music file. var source = "../Assets/music.mp3"; var audio = new Audio(); audio.src = source; audio.autoplay = true; });

提交回复
热议问题