»
AnglaisFrançaisVietnamien

Imprimer - Le A.C Slide - JavaScriptBank.com

Version complète: jsB@nk » Texte » Fade-Glow » Le A.C Slide
URL: https://www.javascriptbank.com/the-a-c-slide.html

Le A.C Slide © JavaScriptBank.comCet JavaScript diapositives de texte que vous souhaitez sur le côté. Il change aussi entre les couleurs. Vous pouvez personnaliser tout cela. Si vous avez mis des balises pour centre, le script fait quelque chose de cool.

Version complète: jsB@nk » Texte » Fade-Glow » Le A.C Slide
URL: https://www.javascriptbank.com/the-a-c-slide.html



JavaScript
<SCRIPT language=javascript>/*        By: Aaron Connelly       E-Mail: MAUWDIB@aol.com       Must stay intact for use*///How fast the text will slidevar speed=100//The Messagevar msg="JavaScriptBank.com"//The Text Sizevar size="7"//Don't Edit below this line - Except the colors.var s="0"var i="0"function slide(){var indent=new Array()indent[1]="0pt"indent[2]="5pt"indent[3]="10pt"indent[4]="15pt"indent[5]="20pt"indent[6]="25pt"indent[7]="30pt"indent[8]="25pt"indent[9]="20pt"indent[10]="15pt"indent[11]="10pt"indent[12]="5pt"indent[13]="0pt"indent[14]="-5pt"indent[15]="0pt"indent[16]="0pt"indent[17]="0pt"indent[18]="0pt"indent[19]="0pt"indent[20]="0pt"i=(i==20)?1:++i//You can Edit the colorsvar color=new Array()color[1]="blue"color[2]="red"color[3]="green"//Don't Edit below this lines=(s==3)?1:++svar code="<font size=" + size + " color='" + color[s] + "'>" + msg + "</font>"document.all.M1.style.letterSpacing=indent[i]document.all.M1.innerHTML=codesetTimeout("slide()",speed)}window.onload=slide</SCRIPT><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<DIV align=center id=M1></DIV><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->