H5 背景音乐自动播放(兼容IOS和Android)

首先看下效果图:
H5 背景音乐自动播放(兼容IOS和Android)_第1张图片

要实现的效果:
1.小icon自动旋转
2.音乐自动播放

一. 小icon css 自动无限旋转


.musicImg{animation:xz 1s linear infinite;}
@keyframes xz{
from  {transform:rotate(0deg);}
to{transform:rotate(360deg);}
}

二. vue 音乐自动播放(想要让背景音乐自动播放,并且不受页面滑动切换的影响,这部分代码一定是放在公共的地方的,所以我选择把这部分代码放在App.vue中)




function autoPlayVideo(){
   wx.config({
         debug:false,
         appId:"",
         timestamp:1,
         nonceStr:"",
         signature:"",
         jsApiList:[]
     });
     wx.ready(function(){
         var autoplayVideo = document.getElementById("music");
         autoplayVideo.play()
     })
 };
 autoPlayVideo();

你可能感兴趣的:(#,L4:Vue,Part1:Web)