Hmmmm, coś takiego Ci dam - może będzie OK
na podstawie strony - skrypt sobie wyciągniesz:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">
<title>nazwa strony</title>
<script type="text/javascript">
var C = 0;
var i = 1;
function textChange()
{
var color = (C < 16)? '0' + C.toString(16):C.toString(16);
color += color + color;
color = '#' + color;
document.getElementById("textLayer").style.color = color;
C += i;
if (C > 254 || C < 1) i = -i;
setTimeout("textChange()", speed);
}
</script>
</head>
<body onLoad="textChange();">
<div
id="textLayer"
style =
"visibility: visible;
width:40%;
heigth:20%;
text-Align:center;
position: relative;
font-size:24pt;
top:10%;
left:30%;">
Witamy na naszej stronie! - treść
</div>
</body>
</html>