Log in

View Full Version : ya w/e need your help init



Jamie.
02-07-2006, 05:49 PM
right whats the html code for!
glowing text;

text color = Blue
glow color = orange

kthnxbi

Halting
02-07-2006, 05:52 PM
Blue:
<style>
<!--
#glowtext{
filter:glow(color=0000FF,strength=3);
width:100%;
}
-->
</style>
<script language="JavaScript1.2">
function glowit(which){
if (document.all.glowtext[which].filters[0].strength==3)
document.all.glowtext[which].filters[0].strength=2
else
document.all.glowtext[which].filters[0].strength=3
}
function glowit2(which){
if (document.all.glowtext.filters[0].strength==3)
document.all.glowtext.filters[0].strength=2
else
document.all.glowtext.filters[0].strength=3
}
function startglowing(){
if (document.all.glowtext&&glowtext.length){
for (i=0;i<glowtext.length;i++)
eval('setInterval("glowit('+i+')",150)')
}
else if (glowtext)
setInterval("glowit2(0)",150)
}
if (document.all)
window.onload=startglowing
</script>
<span id="glowtext">Text goes here.</span>
Orange:
<style>
<!--
#glowtext{
filter:glow(color=FF8040
,strength=3);
width:100%;
}
-->
</style>
<script language="JavaScript1.2">
function glowit(which){
if (document.all.glowtext[which].filters[0].strength==3)
document.all.glowtext[which].filters[0].strength=2
else
document.all.glowtext[which].filters[0].strength=3
}
function glowit2(which){
if (document.all.glowtext.filters[0].strength==3)
document.all.glowtext.filters[0].strength=2
else
document.all.glowtext.filters[0].strength=3
}
function startglowing(){
if (document.all.glowtext&&glowtext.length){
for (i=0;i<glowtext.length;i++)
eval('setInterval("glowit('+i+')",150)')
}
else if (glowtext)
setInterval("glowit2(0)",150)
}
if (document.all)
window.onload=startglowing
</script>
<span id="glowtext">Text goes here.</span>

Psst - Glowing text and other elements only usually work in IE. I'm not sure about Netscape, Safari or Opera but it doesn't work in ff.

Jamie.
02-07-2006, 05:55 PM
LMAO! this is for a forum name..... lol!

nets
02-07-2006, 06:02 PM
Blue:

<span style="filter:glow(color=#0000FF, strength=5); height: 15px;">Text</div>
Orange:

<span style="filter:glow(color=#FF9900, strength=5); height: 15px;">Text</div>

Edit: Halting, wouldn't it have been easier to have just given him the link?
http://rainbow.arch.scriptmania.com/scripts/glow_link.html

Want to hide these adverts? Register an account for free!