首頁 >web前端 >html教學 >當媒體在HTML中開始播放時執行腳本?

當媒體在HTML中開始播放時執行腳本?

WBOY
WBOY轉載
2023-08-27 08:09:091101瀏覽

當媒體在HTML中開始播放時執行腳本?

使用onplaying 屬性讓使用者知道音訊/視訊已開始播放。

範例 h2>

您可以嘗試執行以下程式碼來了解如何在媒體開始播放時執行腳本 -

<!DOCTYPE html>
<html>
   <body>
      <video id = "myid" width = "350" height = "200" controls onplaying = "display()">
         <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>
      <script>
         function display() {
         alert("Video started playing!");
         }
      </script>
   </body>
</html>

以上是當媒體在HTML中開始播放時執行腳本?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除