Free Web Hosting Provider - Web Hosting - E-commerce - High Speed Internet - Free Web Page
Search the Web

Animated Screen

Animated Screen:

meter1.gif (26321 bytes)

OFF stage:

ON stage:

anibutton.gif (2144 bytes)

anibutton1.gif (2152 bytes)

anibottom.gif (2930 bytes)

anibottom1.gif (2902 bytes)

Interface with Mouse over effect:
meter1.gif (26321 bytes)
Image
Image
Image
Image

 

THE TWO STEPS TO INSTALL IMAGE MOUSE OVER EFFECT:

1. Paste the coding into the HEAD of your HTML document
2. Add the last code into the BODY of your HTML document

STEP ONE: Copy this code into the HEAD of your HTML document

<HEAD>

<SCRIPT language="JavaScript">
<!-- Begin
function move_in(img_name,img_src) {
document[img_name].src=img_src;
}

function move_out(img_name,img_src) {
document[img_name].src=img_src;
}
// End -->
</SCRIPT>

STEP TWO: Put this code into the BODY of your HTML document.


Be sure to give each image a name! (<img name="button">)
Include that name in the onmouseover/onmouseout tags!

<BODY>

<CENTER>
<A HREF="http://ckgraphix.8m.com"
onmouseover="move_in('
button','pic-off.gif')"
onmouseout="move_out('
button','pic-on.gif')">
<IMG NAME="
button" SRC="pic-off.gif" ALT="Image"></A>
</CENTER>