作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我用 javascript 制作的应用程序有问题。当我点击某物时,我想要播放声音。如果我再次单击它,我希望声音再次开始。
我的问题是因为声音播放的时间比我点击两次的时间长,每次点击都不会启动声音。
用我的应用程序创建一个 JSFiddle 需要很长时间,所以我想知道是否有人可以使用这个 JSFiddle 解决这个问题:http://jsfiddle.net/jamiehap/jtCA9/12/
基本上我希望能够继续点击播放按钮并且声音会重新开始:)
下面是我在 fiddle 中使用的代码:)
$(document).ready(function () {
var audioElement = document.createElement('audio');
audioElement.setAttribute('src', 'http://static1.grsites.com/archive/sounds/quotes/quotes006.mp3');
audioElement.setAttribute('autoplay:false', 'autoplay');
//audioElement.load code above. if you take out :false from the code the file will auto play than everythin works the same after that()
$.get();
audioElement.addEventListener("load", function () {
audioElement.play();
}, true);
$(document).keypress(function (e) {
if (e.which == 13) { //press enter the audio will play
audioElement.play();
} else if (e.which == 32) { //press spacebar the audio will pause play
audioElement.pause();
}
});
// the code below wil allow you to click the play and stop button with the mouse
$('.play-button').click(function () {
audioElement.play();
});
$('.pause').click(function () {
audioElement.pause();
});
});
最佳答案
在调用播放之前将当前时间设置为零
$('.play-button').click(function () {
audioElement.pause();
audioElement.currentTime = 0;
audioElement.play();
});
关于javascript - 如何在点击时播放声音?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31407904/
我是一名优秀的程序员,十分优秀!