i hadn't a deep look at it seems to be a js-fade-in effect that is triggered by a click ... what is not to hard to code :) let me give you an example (just tested in firefox):
[HTML]
<html>
<head>
<style type="text/css">
.base { background: black; color: white; border: 1px black black; }
</style>
<script type="text/javascript">
function fade_in(obj) {
var c = 0;
var o = document.create Element('div');
o.innerHTML = obj.innerHTML;
o.style.backgro und = 'red';
o.style.border = '1px solid white';
o.style.positio n = 'fixed';
o.style.top = obj.offsetTop;
o.style.left = obj.offsetLeft;
o.style.height = c + 'px';
obj.appendChild (o);
var resize_obj = function() {
c++;
if (c >= obj.offsetHeigh t - 1) {
window.clearInt erval(intv);
}
Rollovers without flash is a common thing on the net, as someone said earlier. There is the posssibility to accomplish this from CSS. There is a video tutorial on [removed] that might help you.
Comment