The fluorescent Effect of Javascript
Yingguang effect example script <! -- Var from = 1; var to = 4; var delay = 55; // The Flash speed var glowColor = "lime"; // The color var I =; var j = 0; 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
[Ctrl + A select all Note: If you need to introduce external Js, You need to refresh it to execute]