Open In App

HTML | DOM onwheel Event

The onwheel event in HTML DOM occurs when the mouse wheel is spined over an element. This event also triggered when the user scrolls or zooms in or out an element. The onwheel event also works on the touchpad.

supported Tagst



Syntax: 
 

<element onwheel="Script">
object.onwheel = function(){Script};
object.addEventListener("wheel", Script);

Example: Using the addEventListener() method 
 






<!DOCTYPE html>
<html>
 
<head>
    <title>HTML DOM onwheel Event</title>
    <style>
        #divID {
            border: 1px solid black;
        }
    </style>
</head>
 
<body>
    <center>
        <h1 style="color:green">GeeksforGeeks</h1>
        <h2>HTML DOM onwheel Event</h2>
 
        <div id="divID">roll the wheel</div>
    </center>
    <script>
        document.getElementById(
          "divID").addEventListener("wheel", GFGfun);
 
        function GFGfun() {
            this.style.fontSize = "40px";
            this.style.color = "green";
        }
    </script>
 
</body>
 
</html>

Output: 
Before: 
 

After: 
 

Supported Browsers: The browsers supported by HTML DOM onwheel Event are listed below: 
 

 

Article Tags :