Look up blend transition effects with javascript in google. That will tell you how... It is only support with ie though in Opera there is no effect.
__________________
Please login or register to view this content. Registration is FREE - The Internet Jumble Sale,
Please login or register to view this content. Registration is FREE - Personal space containing interesting articles and information on downloadable scripts
Please login or register to view this content. Registration is FREE - Free link exchange directory and PPC advertising scheme
Please login or register to view this content. Registration is FREE - The ejumblesale forums
when you see something you like on another site, take a look at the source and copy the code!
it's javascript
HTML Code:
<script>
nereidFadeObjects = new Object();
nereidFadeTimers = new Object();
/* object - image to be faded (actual object, not name);
* destop - destination transparency level (ie 80, for mostly solid)
* rate - time in milliseconds between trasparency changes (best under 100)
* delta - amount of change each time (ie 5, for 5% change in transparency)
*/
function nereidFade(object, destOp, rate, delta){
if (!document.all)
return
if (object != "[object]"){ //do this so I can take a string too
setTimeout("nereidFade("+object+","+destOp+","+rate+","+delta+")",0);
return;
}
clearTimeout(nereidFadeTimers[object.sourceIndex]);
diff = destOp-object.filters.alpha.opacity;
direction = 1;
if (object.filters.alpha.opacity > destOp){
direction = -1;
}
delta=Math.min(direction*diff,delta);
object.filters.alpha.opacity+=direction*delta;
if (object.filters.alpha.opacity != destOp){
nereidFadeObjects[object.sourceIndex]=object;
nereidFadeTimers[object.sourceIndex]=setTimeout("nereidFade(nereidFadeObjects["+object.sourceIndex+"],"+destOp+","+rate+","+delta+")",rate);
}
}
</script>
Getting on the Web Standards band-wagon? Get these books - Please login or register to view this content. Registration is FREE and Please login or register to view this content. Registration is FREE
Takin' in the view from the outside. Feeling like the underdog. Watching through the window I'm on the outside. Living like the underdog. -Dream Theater