home > real world > web resource > web source codes >
www.digitalelf.go.ro the best source codes!
|
STEP 1/3: Put this code into the <HEAD> of your document:
<HEAD>
<TITLE>Text glow</TITLE>
<LINK REL="stylesheet" HREF="elf.css" TYPE="text/css">
<style>
.F1 {filter: glow(Color=#FF8000,Strength=10);
width=300px;
height=60px;}
.F2 {filter: glow(Color=#00FF00,Strength=9);
width=300px;
height=60px;}
.F3 {filter: glow(Color=#0080FF,Strength=8);
width=300px;
height=60px;}
</style>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
var rate = 1000
// do not edit below this line
var i = 0;
var F = 'F1';
function doThing() {
if (document.getElementById&&document.all) {
ok = true;
i++;
if (i==1) F = 'F1';
if (i==2) F = 'F2';
if (i==3) F = 'F3';
DumDum.className = F;
if (i > 2) i = 0;
timer = setTimeout('doThing()', rate);
}
}
// End -->
</script>
</HEAD>
STEP 2/3: Put this event into the <BODY> of your document:
<BODY onLoad="doThing()">
STEP 3/3: Put this code into the document:
<table width="300" cellspacing="0" cellpadding="0" align=center border=0>
<tr><td align=center>
<p id="DumDum"><font face="Courier" size="5" color="#FFFFFF"><b>www.digitalelf.go.ro<BR>the best source codes!</b></font></p>
</td></tr>
</table>
|