HTML onmousemove 事件属性


HTML onmousemove 事件属性在 HTML 文档中的 HTML 元素上移动鼠标指针时触发。

语法

语法如下 −

<tagname onmousemove=”script”></tagname>

下面我们看一个 HTML onmousemove 事件属性的示例 −

示例

 动态演示

<!DOCTYPE html>
<html>
<head>
<style>
   body {
      color: #000;
      height: 100vh;
      background-color: #FBAB7E;
      background-image: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%);
      text-align: center;
   }
   .circle {
      background: #db133a;
      height: 150px;
      width: 150px;
      border-radius: 50%;
      margin: 10px auto;
   }
   p {
      margin: 30px auto;
   }
</style>
</head>
<body>
<h1>HTML onmousemove Event Attribute Demo</h1>
<div class="circle" onmousemove="mouseMoveFn()" onmouseout="mouseOutFn()"></div>
<p>Try to move the cursor over the red circle</p>
<script>
   function mouseMoveFn() {
      document.querySelector('.circle').style.background = '#2274A5';
   }
   function mouseOutFn() {
      document.querySelector('.circle').style.background = '#0B6E4F';
   }
</script>
</body>
</html>

输出

现在尝试将鼠标光标移动到红色圆圈上,观察 onmousemove 事件属性如何工作 −


更新于:27-Sep-2019

114 次浏览

开启您的 职业生涯

通过完成课程获得认证

开始学习
广告