Testing..Testing...

You can come in here and play around until you get the hang of forum posts. It's unlikely you'll be yelled at.
Post Reply
Rowena
Posts: 7
Joined: Fri Jan 10, 2003 6:00 pm
Please enter the next number in sequence: 1
Location: Brisbane, Australia

Post by Rowena »

1. 2. 3!
Rowena
Posts: 7
Joined: Fri Jan 10, 2003 6:00 pm
Please enter the next number in sequence: 1
Location: Brisbane, Australia

Post by Rowena »

Is replying to your own message a sign of madness?
2nd Wind
Posts: 107
Joined: Sun Nov 24, 2002 6:00 pm
Please enter the next number in sequence: 1
Location: Oklahoma

Post by 2nd Wind »

<script>
var glowAmt = 0;
var direction = 1;
var maxGlow = 15;

function doGlow() {
d1.filters(0).strength = glowAmt;
glowAmt +=direction;
if ((glowAmt >=maxGlow) || (glowAmt == 0))
direction *= -1;
}

function init() {
window.setInterval("doGlow()", 200);
}
</script>
</head>
<body onload="init()" BGCOLOR="000000" TEXT="000000">
<center>
<DIV id=d1 style="position:relative; width=40%; color:red; filter:glow(color=red)">
<font color="000000" align="bottom" size="5" face="Times_Hackers">God Bless Ya!</font>
</div> _________________
Only tears of love can soak a calloused heart.
- Uriah

<font size=-1>[ This Message was edited by: 2nd Wind on 2003-01-22 14:05 ]</font>
Post Reply