【发布时间】:2022-10-12 21:45:37
【问题描述】:
在所有示例中,我发现在线向视频标签添加自动播放静音循环是如何使用 html 循环视频?但是为什么我的视频只播放一次?
它确实适用于铬
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<video width="320" height="240" autoplay muted loop>
<source src="1.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</body>
</html>
【问题讨论】:
-
您使用的是哪个浏览器?
-
这回答了你的问题了吗? HTML5 video will not loop
-
我正在使用火狐
-
不,它不适用于示例 document.getElementsByTagName('video')[0].onended = function () { this.load(); this.play(); };