JavaScript 参考手册
onwheel 事件
HTML 中
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>蜜蜂教程(mifengjc.com)</title> <style> #myDIV { border: 1px solid black; } </style> </head> <body> <div id="myDIV">该实例演示了如何向 DIV 元素添加 "wheel" 事件。在这个区域上下滚动鼠标滚轮!</div> <p>当你在 div 元素中滚动鼠标滚轮时,脚本函数会设置 div 的字体大小为 35 像素。</p> <p><strong>注意:</strong> Internet Explorer 和 Safari 浏览器不支持 wheel 事件</p> <script> function myFunction() { document.getElementById("myDIV").style.fontSize = "35px"; } </script> </body> </html>
运行结果:
点击运行 »