JavaScript实现鼠标滑过图片变换效果的方法

这篇文章主要介绍了JavaScript实现鼠标滑过图片变换效果的方法,涉及javascript控制鼠标事件及样式变换的技巧,非常具有实用价值,需要的朋友可以参考下

本文实例讲述了JavaScript实现鼠标滑过图片变换效果的方法。分享给大家供大家参考。具体如下:

<html> <head> <title>Swap Images with onMouseOver and onMouseOut</title> </head> <body bgcolor="#FFFFCC" text="#3300FF"> <CENTER> <FORM NAME = form1> <H2> Move the mouse across to swap the image ... </H2> <A HREF="" name= link1 onMouseOver = "ImgOver()" onMouseOut = "ImgOut()"> <IMG NAME = "IMG1" SRC = "images/follow.jpg" WIDTH = 800 HEIGHT = 600> </A> </CENTER> <SCRIPT LANGUAGE= JavaScript> function ImgOver() { // use an image file you have or use one of XP's wallpaper document.form1.IMG1.src = 'images/home.jpg'; } function ImgOut() { // use an image file you have or use one of XP's wallpaper document.form1.IMG1.src = 'images/follow.jpg'; } </SCRIPT> </body> </html>

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

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgjjpj.html