使用loop屬性指定音訊/視訊將重新開始。您可以嘗試執行以下程式碼來實作循環屬性 -
<!DOCTYPE HTML> <html> <body> <video width = "300" height = "200" controls loop> <source src = "/html5/foo.ogg" type = "video/ogg" /> <source src = "/html5/foo.mp4" type = "video/mp4" /> Your browser does not support the video element. </video> </body> </html>
以上是如何在HTML中指定音訊/視訊在播放結束後每次都重新開始?的詳細內容。更多資訊請關注PHP中文網其他相關文章!