»
EnglishFrenchVietnamese

Print - Text Blur Ticker script - JavaScriptBank.com

Full version: jsB@nk » Text » Fade-Glow » Text Blur Ticker script
URL: https://www.javascriptbank.com/text-blur-ticker-script.html

Text Blur Ticker script © JavaScriptBank.comThis is a simple text blur ticker.

Full version: jsB@nk » Text » Fade-Glow » Text Blur Ticker script
URL: https://www.javascriptbank.com/text-blur-ticker-script.html



JavaScript
<SCRIPT language=javaScript><!-- Beginning of JavaScript -var thissize=30var textfont="Verdana"var textcolor= new Array()textcolor[0]="EEEEEE"textcolor[1]="DDDDDD"textcolor[2]="CCCCCC"textcolor[3]="AAAAAA"textcolor[4]="888888"textcolor[5]="666666"textcolor[6]="555555"textcolor[7]="444444"textcolor[8]="333333"textcolor[9]="222222"textcolor[10]="111111"textcolor[11]="000000"var message = new Array()message[0]="Hi stranger!"message[1]="Go to JSBank"message[2]="Get the script for free."message[3]="Then change the font."message[4]="Then change the font-size."message[5]="Then change the blur-strength."message[6]="Then change the messages."message[7]="Then blur your text."message[8]="Then have fun."var i_blurstrength=20var i_message=0var i_textcolor=0function blurtext() {if(document.all) {if (i_blurstrength >=-2) {if (i_textcolor >=textcolor.length-1) {i_textcolor=textcolor.length-1}blurthis.innerHTML="<span id='blurpit1' style='width: 100%;position:relative;visibility:visible;width:600px; top:5px;left:5px;filter:blur(add=0,strength="+i_blurstrength+",direction=90);font-family:"+textfont+";font-size:"+thissize+"pt;color:"+textcolor[i_textcolor]+"'>"+message[i_message]+"</span>";document.close()i_blurstrength=i_blurstrength-2i_textcolor++var timer=setTimeout("blurtext()",50)}else {if (i_textcolor >=textcolor.length-1) {i_textcolor=textcolor.length-1}blurthis.innerHTML="<span id='blurit1' style='width: 100%;position:relative;visibility:visible;width:600px; top:5px;left:5px;filter:blendTrans(duration=4.2);font-family:"+textfont+";font-size:"+thissize+"pt;color:FF0000;'>"+message[i_message]+"</span>";i_message++if (i_message>=message.length){i_message=0}i_blurstrength=20i_textcolor=0clearTimeout(timer)var timer=setTimeout("blurtext()",2000)}}}// - End of JavaScript - --></SCRIPT><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<BODY onload=blurtext()><DIV id=blurthis style="POSITION: absolute; VISIBILITY: visible"></DIV></BODY<!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->