How to autoplay HTML5 mp4 video on Android?

后端 未结 15 1020
一向
一向 2020-11-27 05:53

I had developed a mobile page by asp.net to play mp4 video.

I know iOS had disabled the autoplay function to minimize user bandwidth, so how can i autoplay HTML5 mp

15条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-27 06:21

    I simplified the Javascript to trigger the video to start.

     var bg = document.getElementById ("bg"); 
     function playbg() {
       bg.play(); 
     }
    
    
    

    *"Files/snow.mp4" is just sample url

提交回复
热议问题