» Site Navigation |
|
|
» Online Users: 137 |
| 0 members and 137 guests |
| No Members online |
| Most users ever online was 9,654, 05-18-2025 at 05:16 AM. |
|
05-01-2003, 05:00 PM
|
#11
|
|
[intentionally omitted]
Join Date: Mar 2003
Location: NYC
Posts: 18,597
|
I'm not just the President of Hot Meals, Inc. I'm a member.
Quote:
Originally posted by kafka_esquire
It requires javascript, which I do not think works here. If it did/does, here are some codes that make Kafka red and throbbing (there also are non-code methods of accomplishing this feat).
<span id="theText" style="width:100%">
<h2>Kafka</h2>
</span>
<script>
<!--
//range of glowing
var from = 5;
var to = 11;
//speed of pulsing
var delay = 55;
//color of glow, name or RGB value (example:'#00FF00')
var glowColor = "red";
//NO MORE EDITING!!!
var i = to;
var j = 0;
//can be called here or whenever you want the text to start pulsing
textPulseDown();
function textPulseUp()
{
if (!document.all)
return
if (i < to)
{
theText.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")";
i++;
theTimeout = setTimeout('textPulseUp()',delay);
return 0;
}
if (i = to)
{
theTimeout = setTimeout('textPulseDown()',delay);
return 0;
}
}
function textPulseDown()
{
if (!document.all)
return
if (i > from)
{
theText.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")";
i--;
theTimeout = setTimeout('textPulseDown()',delay);
return 0;
}
if (i = from)
{
theTimeout = setTimeout('textPulseUp()',delay);
return 0;
}
}
//-->
</script></font>
|
If it takes this much to be King of the Geeks, I bet MR never takes your title.
TM
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
All times are GMT -4. The time now is 06:11 AM.