当鼠标指针在元素上方移动时触发
将鼠标指针移到图像上时执行 JavaScript:
<img onmousemove="bigImg(this)" onmouseout="normalImg(this)" border="0" src="../assets/chrome.svg" alt="Smiley" width="32" height="32"> <p>当用户鼠标指针移到图像上时会触发函数 bigImg()。 此功能可放大图像。</p> <p>当鼠标指针移出图像时触发函数 normalImg()。 该函数将图像的高度和宽度设置回正常值。</p> <script> function bigImg(x) { x.style.height = "64px"; x.style.width = "64px"; } function normalImg(x) { x.style.height = "32px"; x.style.width = "32px"; } </script>
当指针在元素上方移动时,onmousemove 属性会触发。
事件属性 | |||||
---|---|---|---|---|---|
onmousemove | Yes | Yes | Yes | Yes | Yes |
<element onmousemove="script">
值 Value | 描述 Description |
---|---|
script | 要在 onmousemove 上运行的脚本 |
支持的 HTML 标签: | 所有 HTML 元素,除了: <base>, <bdo>, <br>, <head>, <html>, <iframe>, <meta>, <param>, <script>, <style>, 和 <title> |