實例
當滑鼠指標移到影像上時執行一段JavaScript:
<img onmousemove="bigImg(this)" src="smiley.gif" alt="Smiley">
瀏覽器支援
IE
Firefox
Chrome
Safari
Opera
所有主流瀏覽器都支援onmousemove 屬性。
定義和用法
onmousemove 屬性在滑鼠指標移動到元素上時觸發。
註解:onmousemove 屬性不適用下列元素:dde6fb694e6711ae5e6f381704c04ae4、71af07a0e88a1ac1ff73f855702ac153、0c6dc11e160d3b678d68754cc175188a、93f0f5c25f18dab9d176bd4f6de5d30e、100db36a723c770d327fc0aef2ce13b1、d5ba1642137c3f32f4f4493ae923989c 、e8e496c15ba93d81f6ea4fe5f55a2244、0c68fef83818661b6da588c77ca3985e、3f1c4e4b6b16bbbd69b2ee476dc4f83a、c9ccee2e6ea535a969eb3f532ad9fe89 或b2386ffb911b14667cb8f0f91ea547a7。
HTML 4.01 與 HTML5 之間的差異
無。
語法
<element onmousemove="script">
屬性值
#值 | 描述 |
script | onmousemove 發生時執行的腳本。 |
實例
當滑鼠指標移到影像上時執行一段JavaScript(使影像放大):
<!DOCTYPE html> <html> <head> <script> function bigImg(x) { x.style.height="180px"; x.style.width="180px"; } function normalImg(x) { x.style.height="128px"; x.style.width="128px"; } </script> </head> <body> <img onmousemove="bigImg(this)" onmouseout="normalImg(this)" border="0" src="/i/eg_smile.gif" alt="Smiley" > <p>函数 bigImg() 在鼠标指针移动到图像上时触发。此函数放大图像。</p> <p>函数 normalImg() 在鼠标指针移出图像时触发。此函数把图像的高度和宽度重置为正常尺寸。</p> </body> </html>
以上是html在滑鼠指標移動到元素上時觸發的函數onmousemove的詳細內容。更多資訊請關注PHP中文網其他相關文章!