Skip to content

Instantly share code, notes, and snippets.

@52cik
Created December 26, 2016 05:51
Show Gist options
  • Save 52cik/734da6935b118ef1b5826b46537c8099 to your computer and use it in GitHub Desktop.
Save 52cik/734da6935b118ef1b5826b46537c8099 to your computer and use it in GitHub Desktop.
微信背景音乐自动播放
// <audio src="bg.mp3" id="media" autoplay loop preload="auto"></audio>
var player = document.getElementById('media');
player.play();
// iphone 下要监听 WeixinJSBridgeReady 事件
document.addEventListener('WeixinJSBridgeReady', function () {
player.play();
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment