我该怎么做,所以只要用户单击链接,我们就会播放声音?在这里使用javascript和jquery。
Answers:
使用此插件:https : //github.com/admsev/jquery-play-sound
$.playSound('http://example.org/sound.mp3');
<audio>
在页面上放置一个元素。
获取您的音频元素并调用play()
方法:
document.getElementById('yourAudioTag').play();
看看这个例子:http : //www.storiesinflight.com/html5/audio.html
本网站揭示的其他一些很酷的事情可以做,比如load()
,pause()
和音频元素的一些其他属性。
究竟何时要播放此音频元素取决于您。阅读按钮的文本,如果愿意,可以将其与“否”进行比较。
http://www.schillmania.com/projects/soundmanager2/
SoundManager 2提供了易于使用的API,该API允许在任何现代浏览器(包括IE 6+)中播放声音。如果浏览器不支持HTML5,则它将从Flash获得帮助。如果您要严格使用HTML5且不使用Flash,则可以进行设置,宁愿Flash = false
它在iPad,iPhone(iOS4)和其他支持HTML5的设备+浏览器上支持100%无Flash音频
使用非常简单:
<script src="soundmanager2.js"></script>
<script>
// where to find flash SWFs, if needed...
soundManager.url = '/path/to/swf-files/';
soundManager.onready(function() {
soundManager.createSound({
id: 'mySound',
url: '/path/to/an.mp3'
});
// ...and play it
soundManager.play('mySound');
});
这是实际的演示:http : //www.schillmania.com/projects/soundmanager2/demo/christmas-lights/
发现了这样的东西:
//javascript:
function playSound( url ){
document.getElementById("sound").innerHTML="<embed src='"+url+"' hidden=true autostart=true loop=false>";
}
使用html5音频标签和jquery:
// appending HTML5 Audio Tag in HTML Body
$('<audio id="chatAudio">
<source src="notify.ogg" type="audio/ogg">
<source src="notify.mp3" type="audio/mpeg">
</audio>').appendTo('body');
// play sound
$('#chatAudio')[0].play();
代码从这里开始。
在我的实现中,我将音频直接嵌入到HTML中,而无需添加jquery。
Uncaught (in promise) DOMException: play() failed because the user didn't interact with the document first
,Chrome Version 70.0.3538.102 (Official Build) (64-bit)
...似乎是解决方案:stackoverflow.com/a/52821721
JavaScript声音管理器:
$('a').click(function(){
$('embed').remove();
$('body').append('<embed src="/path/to/your/sound.wav" autostart="true" hidden="true" loop="false">');
});
我使用Web Audio API编写了一个可以完成此任务的小函数...
var beep = function(duration, type, finishedCallback) {
if (!(window.audioContext || window.webkitAudioContext)) {
throw Error("Your browser does not support Audio Context.");
}
duration = +duration;
// Only 0-4 are valid types.
type = (type % 5) || 0;
if (typeof finishedCallback != "function") {
finishedCallback = function() {};
}
var ctx = new (window.audioContext || window.webkitAudioContext);
var osc = ctx.createOscillator();
osc.type = type;
osc.connect(ctx.destination);
osc.noteOn(0);
setTimeout(function() {
osc.noteOff(0);
finishedCallback();
}, duration);
};
到目前为止,似乎还可以与IE,Gecko浏览器和iPhone兼容。
以下代码可能会帮助您仅使用JavaScript在网页中播放声音。您可以在http://sourcecodemania.com/playing-sound-javascript-flash-player/中查看更多详细信息
<script>
function getPlayer(pid) {
var obj = document.getElementById(pid);
if (obj.doPlay) return obj;
for(i=0; i<obj.childNodes.length; i++) {
var child = obj.childNodes[i];
if (child.tagName == "EMBED") return child;
}
}
function doPlay(fname) {
var player=getPlayer("audio1");
player.play(fname);
}
function doStop() {
var player=getPlayer("audio1");
player.doStop();
}
</script>
<form>
<input type="button" value="Play Sound" onClick="doPlay('texi.wav')">
<a href="#" onClick="doPlay('texi.wav')">[Play]</a>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
width="40"
height="40"
id="audio1"
align="middle">
<embed src="wavplayer.swf?h=20&w=20"
bgcolor="#ffffff"
width="40"
height="40"
allowScriptAccess="always"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer"
/>
</object>
<input type="button" value="Stop Sound" onClick="doStop()">
</form>