द ऑनव्हील विशेषता ट्रिगर होती है जब माउस व्हील किसी तत्व पर ऊपर या नीचे लुढ़कता है। ऑनव्हील . को लागू करने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं विशेषता -
उदाहरण
<!DOCTYPE html> <html> <body> <h3 id = "myid" onwheel = "mouseWheel()"> This is demo heading. </h3> <p>Click above and use mouse wheel to change the heading color.</p> <script> function mouseWheel() { document.getElementById("myid").style.color = "red"; } </script> </body> </html>