README.md
December 5, 2022 ยท View on GitHub
Description
This script lets you specify two images and on mouseover of the image it fades to a different image. perfect for dhtml fade navs.
More Info
| Submitted On | |
| By | chris mcintosh |
| Level | Intermediate |
| User Rating | 5.0 (10 globes from 2 users) |
| Compatibility | |
| Category | Graphics |
| World | Java |
| Archive File |
Source Code
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<"script" type="text/javascript">
function blendCham(which) {
imCham.filters.blendTrans.Apply();
imCham.src = which;
imCham.filters.blendTrans.Play();
}
</script>
<"IMG" ID="imCham" SRC="logoraw.png" STYLE="filter:blendTrans(duration=2)" onmouseout="blendCham('logoraw.png')" onmouseover="blendCham('logoraw2.png')">