首页 > web前端 > html教程 > 当鼠标滚轮在HTML元素上向上或向下滚动时执行脚本?

当鼠标滚轮在HTML元素上向上或向下滚动时执行脚本?

王林
发布: 2023-09-23 10:49:02
转载
1385 人浏览过

当鼠标滚轮在HTML元素上向上或向下滚动时执行脚本?

onwheel 当鼠标滚轮在元素上向上或向下滚动时触发属性。您可以尝试运行以下代码来实现onwheel 属性 -

示例

<!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>
登录后复制

以上是当鼠标滚轮在HTML元素上向上或向下滚动时执行脚本?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:tutorialspoint.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板