»
EnglishFrenchVietnamese

Print - The 3DAT Maker - JavaScriptBank.com

Full version: jsB@nk » Text » The 3DAT Maker
URL: https://www.javascriptbank.com/the-3dat-maker.html

The 3DAT Maker © JavaScriptBank.comThe 3DAT Maker is the glassing text effect.

Full version: jsB@nk » Text » The 3DAT Maker
URL: https://www.javascriptbank.com/the-3dat-maker.html



JavaScript
<SCRIPT langauge="javascript">/*      Name : The 3DAT Maker       By : Aaron Connelly      For non-comercial use only -- other Contact MAUWDIB@aol.com      Must stay intact for use!*//* ****EDIT HERE*****///How fast the animation is moveingvar speed=2000//The first layervar color="red"//The Second layervar color2="blue"//The third layervar color4="green"//The visible layervar color3="gold"/*! IMPORTANT ! if you add more messages be sure to adjust the settings below to the amount of messages.*///The amount of messagesamountmsg=3//Your messagesvar msg=new Array()msg[1]="| WELCOME TO JavaScriptBank.com|"msg[2]="|-- From The --|"msg[3]="| \"3DAT TEXT\" |"//DON'T EDIT BELOW THIS LINEvar currentmsg=0function blaze(){coder()}function coder(){currentmsg=(currentmsg==amountmsg)?1:++currentmsgvar code="<font color='" + color + "' size=+4>" + msg[currentmsg] + "</font>"var code2="<font color='" + color2 + "' size=+4>" + msg[currentmsg] + "</font>"var code3="<font color='" + color3 + "' size=+4>" + msg[currentmsg] + "</font>"var code4="<font color='" + color4 + "' size=+4>" + msg[currentmsg] + "</font>"document.all.saying1.innerHTML=codedocument.all.saying2.innerHTML=code2document.all.saying3.innerHTML=code3document.all.saying4.innerHTML=code4setTimeout("coder()",speed)}window.onload=blaze</SCRIPT><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<DIV id=main style="LEFT: 0px; POSITION: relative; TOP: 0px"><DIV id=saying1 style="LEFT: -3px; POSITION: relative; TOP: 0px"></DIV><DIV id=saying2 style="LEFT: 0px; POSITION: relative; TOP: -55px"></DIV><DIV id=saying3 style="LEFT: -1px; POSITION: relative; TOP: -107px"></DIV><DIV id=saying4 style="LEFT: -1px; POSITION: relative; TOP: -160px"></DIV></DIV><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->