<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>BFW NEW PAGE</title>
</head>
<body>
<span id="bf"BfwOnclick="play();">播放/暂停</span>
<span id="bf"BfwOnclick="resume();">重新播放</span>
<audio src="//repo.bfw.wiki/bfwrepo/sound/5c89fd22dea6948307.mp3"></audio>
<script>
var videoEl = document.querySelector('audio');
function play() {
if (videoEl !== null) {
//检测播放是否已暂停.audio.paused 在播放器播放时返回false.
if (videoEl.paused) {
videoEl.play(); //audio.play();// 这个就是播放
} else {
videoEl.pause(); // 这个就是暂停
}
}
}
function resume() {
if (videoEl !== null) {
videoEl.currentTime = 0;
videoEl.play();
}
}
videoEl.addEventListener('play', function () {})
//播放进度监听
videoEl.addEventListener('timeupdate', function () {
var vTime = videoEl.currentTime;
var total_vtime = videoEl.duration;
//4秒后暂停播放
if (vTime >= 4) {
videoEl.currentTime = 0;
videoEl.pause();
}
})
</script>
</body>
</html>
网友回复
阿里云ESA、cloudflare worker、腾讯云EdgeOne网站代理托管哪家更好?
剪映能打开.fcpxml格式的文件吗?
增量式编码器与绝对式编码器的区别是啥?
有没有开源的单张照片或者序列帧图片或视频就能重建4d场景动画项目?
chrome网页突然报错:错误代码:RESULT_CODE_KILLED_BAD_MESSAGE
openai的codex如何全程无需手动确认自动修改文件?
阿里云oss前端上传文件直传如何限制文件类型?
阿里云oss前端获取policy签名直传oss上传文件回调如何传?
如何将根据三维物体通过提示词变成可交互的4d场景动画?
浏览器中实时摄像头离线视觉ai模型有吗?


