首页 > 语言 > JavaScript > 正文

JS使用oumousemove和oumouseout动态改变图片显示的方法

2024-05-06 16:18:00
字体:
来源:转载
供稿:网友

这篇文章主要介绍了JS使用oumousemove和oumouseout动态改变图片显示的方法,涉及javascript鼠标事件及图片操作技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了JS使用oumousemove和oumouseout动态改变图片显示的方法。分享给大家供大家参考。具体如下:

鼠标放到图片上时图片会自动变大,鼠标离开图片还原

 

 
  1. <!DOCTYPE html> 
  2. <html> 
  3. <head> 
  4. <script> 
  5. function bigImg(x) 
  6. x.style.height="64px"
  7. x.style.width="64px"
  8. function normalImg(x) 
  9. x.style.height="32px"
  10. x.style.width="32px"
  11. </script> 
  12. </head> 
  13. <body> 
  14. <img onmouseover="bigImg(this)" onmouseout="normalImg(this)" 
  15. border="0" src="smiley.gif" alt="Smiley" width="32" height="32"
  16. <p>The function bigImg() is triggered when the user moves 
  17. the mouse pointer over the image.</p> 
  18. <p>The function normalImg() is triggered when the mouse 
  19. pointer is moved out of the image.</p> 
  20. </body> 
  21. </html> 

希望本文所述对大家的javascript程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选