首頁 >web前端 >html教學 >當滑鼠滾輪在HTML元素上滾動時執行腳本嗎?

當滑鼠滾輪在HTML元素上滾動時執行腳本嗎?

PHPz
PHPz轉載
2023-09-14 17:57:081431瀏覽

當滑鼠滾輪在HTML元素上滾動時執行腳本嗎?

當滑鼠滾輪在元素上捲動時,onwheel 屬性會觸發。

範例

您可以當滑鼠滾輪在 HTML 中的元素上滾動時,請嘗試執行以下程式碼來執行腳本 -

<!DOCTYPE html>
<html>
   <head>
   </head>
   <body>
      <div id = "myDIV" onwheel = "display()">This is demo text. Roll the mouse wheel here.</div>

      <script>
         function display() {
            alert("Mouse Wheel used!");
         }
      </script>

   </body>
</html>

以上是當滑鼠滾輪在HTML元素上滾動時執行腳本嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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