README.md
December 4, 2022 ยท View on GitHub
Description
Run your mouse over either image to change both images. The swap image has been preloaded to be readily available when needed.
More Info
| Submitted On | |
| By | Mike McGrath |
| Level | Beginner |
| User Rating | 4.7 (14 globes from 3 users) |
| Compatibility | |
| Category | Graphics |
| World | Java |
| Archive File |
Source Code
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE>Rollovers</TITLE>
<SCRIPT TYPE="text/javascript">
<!-- Original: Mike McGrath (mike_mcgrath@lineone.net) -->
<!-- Web Site: http://website.lineone.net/~mike_mcgrath/index.htm -->
<!--
preload=new Image();
preload.src="images/anim.gif";
//-->
</SCRIPT>
</HEAD>
<BODY>
<A HREF="javascript://"
onmouseover="a.src='images/anim.gif'; b.src='images/anim.gif';"
onmouseout= "a.src='images/clik.gif'; b.src='images/clik.gif';">
<IMG BORDER=0 NAME="a" SRC="images/clik.gif"></A>
<P>
Run your mouse over either image to change both images.<BR>
The swap image has been preloaded to be readily available when needed.<BR>
Right-click and select View Source for more details.
<P>
<A HREF="javascript://"
onmouseover="a.src='images/anim.gif'; b.src='images/anim.gif';"
onmouseout= "a.src='images/clik.gif'; b.src='images/clik.gif';">
<IMG BORDER=0 NAME="b" SRC="images/clik.gif"></A>
</BODY>
</HTML>