
More JavaScript Graphics
Description
It's always neat to dynamically change an image when the user touches it. For this example, There is one image and when you put your cursor on it, it changes to another. If you use this script, be sure to use images of the same size!...View A Script Demo
It's always neat to dynamically change an image when the user touches it. For this example, There is one image and when you put your cursor on it, it changes to another. If you use this script, be sure to use images of the same size!...View A Script Demo
Do you find it confusing setting up these script?
Java Scripts Magic can do all the hard work for you all At The Touch Of A Button.
Java Scripts Magic can do all the hard work for you all At The Touch Of A Button.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
<HEAD>
<LINK href="general.css" rel="stylesheet" type="text/css">
<SCRIPT language="JavaScript">
<!-- Begin
// Preload Images
image1 = new Image();
image1.src = "toad.jpg";
image2 = new Image();
image2.src = "lizard.jpg";
// End -->
<!-- Begin
function movepic(img_name,img_src) {
document[img_name].src=img_src;
}
// End -->
</SCRIPT>
</HEAD>
<BODY Background=../graphics/grayback.jpg>
<center><BR><BR><BR>
<!-- Be sure to give each image a name! (<img name="button">)
Include that name in the onmouseover/onmouseout tags! -->
<A HREF="http://myplace.50g.com"
onmouseover="movepic('button','toad.jpg')"
onmouseout="movepic('button','lizard.jpg')">
<IMG NAME="button" SRC="toad.jpg" ALT="Image"></A>
</center>
</BODY>
</HTML>
<HTML>
<HEAD>
<LINK href="general.css" rel="stylesheet" type="text/css">
<SCRIPT language="JavaScript">
<!-- Begin
// Preload Images
image1 = new Image();
image1.src = "toad.jpg";
image2 = new Image();
image2.src = "lizard.jpg";
// End -->
<!-- Begin
function movepic(img_name,img_src) {
document[img_name].src=img_src;
}
// End -->
</SCRIPT>
</HEAD>
<BODY Background=../graphics/grayback.jpg>
<center><BR><BR><BR>
<!-- Be sure to give each image a name! (<img name="button">)
Include that name in the onmouseover/onmouseout tags! -->
<A HREF="http://myplace.50g.com"
onmouseover="movepic('button','toad.jpg')"
onmouseout="movepic('button','lizard.jpg')">
<IMG NAME="button" SRC="toad.jpg" ALT="Image"></A>
</center>
</BODY>
</HTML>
If you have a Business Proposal that you think may be of interest to us here at Best Download Sites please contact us to discuss the matter in further detail

