Back to Scripts page
Click in the box below, select all and copy to grab the script
<HTML> <HEAD> <TITLE>I'm radioactive!</TITLE> <SCRIPT LANGUAGE=JAVASCRIPT> <!-- Hide script from older browsers // This script copyright 1997, Tom Negrino and Dori Smith. // This script is from "JavaScript for the WWW, Visual QuickStart Guide, 2nd Ed." // For more information, see <http://www.chalcedony.com/javascript/>. // This script may be used and modified, but the copyright notice must remain intact. function doGlow(newStrength) { if (document.all && newStrength < 255) { newStrength += 10 document.all.glowText.style.filter="glow(strength=" + newStrength+ ")" setTimeout("doGlow(" + newStrength+ ")", 100) } } // End hiding script --> </SCRIPT> <STYLE> #glowText {width:500; height:100; font-size:36pt; filter:glow(strength=5)} </STYLE> </HEAD> <BODY BGCOLOR="WHITE" onLoad="doGlow(5)"> <CENTER><DIV ID="glowText">I'm glowing...</DIV></CENTER> </BODY> </HTML>