如何使用 javascript 自动播放 html5 音频标签
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/15331929/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-10-27 00:25:07 来源:igfitidea点击:
How to use a javascript to autoplay a html5 audio tag
提问by John Doe
I saw this deface from anonymous, so I want to add a hidden chiptune song when playing the game, but got kinda lost.
我从匿名看到了这个污点,所以我想在玩游戏时添加一首隐藏的chiptune歌曲,但有点迷路了。
<script type="text/javascript" src="http://www.ussc.gov/include/js/konami.js"></script>
<script type="text/javascript">
var success = function() {
document.body.style.backgroundImage = "url(http://3.bp.blogspot.com/-vKs53Qq5mBI/T9vCsCb-irI/AAAAAAAAB8U/CZsS0iY5RjY/s1600/14685_1_other_wallpapers_anonymous.jpg)";
document.body.style.backgroundSize = "100%";
if(window.KICKASSGAME){window.KICKASSGAME.menuManager.menu.messageTypeChangeShip('242,0');
window.KICKASSGAME.menuManager.destroy()}else{
alert("AntiSec CAEK-mode activated... Destroy the system! Controls: up, down, left, right, space to fire.");
var KICKASSVERSION='2.0';
var s = document.createElement('script');
s.type='text/javascript';document.body.appendChild(s);
s.src='//hi.kickassapp.com/kickass.js';
void(0);}
}
var konami = new Konami(success);
</script>
回答by Rob M.
play
is the method you are looking for
play
是您正在寻找的方法
var audioElement = document.createElement('audio');
audioElement.setAttribute('src', 'YourSong.ogg');
audioElement.load()
audioElement.addEventListener("load", function() {
audioElement.play();
}, true);
回答by Rishi Php
Check this out.. It may help you..!
看看这个..它可能会帮助你..!
function play_sound(url){
if(play_html5_audio){
var snd = new Audio(url);
//code
snd.play();
}else{
var sound = $("<embed id='sound' type='audio/mpeg' />");
//code
$('body').append(sound);
}
}
play_sound('beep.mp3');
Source Code found @ Automatically playing audio with HTML5 and Javascript