作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 video
元素,例如
<video controls>
<source src="foo.ogg" type="video/ogg">
<source src="foo.mp4" type="video/mp4">
Your browser does not support the <code>video</code> element.
</video>
最佳答案
你要听events
的 html5 video
.在您的情况下,这应该是 play
pause
ended
和 seeking
here is an example player其中列出了所有事件。
//HTML
<video id="videoInHTML" width="320" height="240" controls="controls">.....
//Javascript
var yourVideoElement = document.getElementById("videoInHTML");
yourVideoElement.addEventListener('play', videoPausePlayHandler, false);
yourVideoElement.addEventListener('pause', videoPausePlayHandler, false);
function videoPausePlayHandler(e) {
if (e.type == 'play') {
// play your audio
} else if (e.type == 'pause') {
// pause your audio
}
}
seeking
事件。如果玩家正在寻找 = true -> yourAudioFile.seekToTime( yourVideoElement.currentTime )
关于html - 如何将音频混合到 html5 视频中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20203604/
我是一名优秀的程序员,十分优秀!