Created
December 26, 2016 05:51
-
-
Save 52cik/734da6935b118ef1b5826b46537c8099 to your computer and use it in GitHub Desktop.
微信背景音乐自动播放
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// <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