你可以嘗試執行以下程式碼來學習如何實作preload屬性,以便作者可以給瀏覽器提供最佳使用者體驗的提示。適用於
<!DOCTYPE HTML> <html> <body> <video width="300" height = "200" preload = "none" controls> <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中文網其他相關文章!