Rollover 4 - ImageReady Rollover
Main Problem - I can't get this to work with more than One Image !!!
Sample 4-State ImageReady Rollover - the four images
![]() |
![]() |
![]() |
![]() |
| Out | Over | Down | Up |
Script from ImageReady 3-State Rollovers - you simply "Save Optimized" as an HTML and ImageReady writes the code for you and saves the HTML file and the 3 image files. Includes image preload - but I prefer to add preload code to the referrer page so that when the user hits this page, the image immediately pop into place.
This is a "true" 4-state (out-over-down-up) - 4 image rollover and works with all Browsers.
|
|
|
The Code
<SCRIPT TYPE="text/javascript">
<!--
function newImage(arg) {if (document.images)
{rslt = new Image(); rslt.src = arg; return rslt; }}
function changeImages() {if (document.images && (preloadFlag == true))
{for (var i=0; i<changeImages.arguments.length; i+=2)
{document[changeImages.arguments[i]].src = changeImages.arguments[i+1]; }}}
var preloadFlag = false;
function preloadImages() {if (document.images) {
Display_over = newImage("button-over.jpg");
Display_down = newImage("button-down.jpg");
preloadFlag = true; } }
// -->
</SCRIPT>
</HEAD>
<BODY BGCOLOR=#FFFFFF LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 ONLOAD="preloadImages();">
<TABLE Align=center WIDTH=70 BORDER=0 CELLPADDING=0 CELLSPACING=0><TR><TD>
<p align="center"><A HREF="#"ONMOUSEOVER="changeImages('Display', 'mouseover.jpg'); return true;"
ONMOUSEOUT="changeImages('Display', 'mouseout.jpg'); return true;"
ONMOUSEDOWN="changeImages('Display', 'mousedown.jpg'); return true;"
ONMOUSEUP="changeImages('Display', 'mouseover.jpg'); return true;">
<IMG NAME="Display" SRC="mouseout.jpg" BORDER=0 ALT="" width="100" height="62"></A></p> </TD><TD></TABLE>