4:05 pm Friday, August 29, 2008


  Navigation
  Help?
Contact Aaron for all inquiries.
 

  News

ASP Inline Calendar 3.9 Beta 1
ASP Games
ASP Inline Corporate Calendar 3.8 BETA 1 Demo
Calendar Updates
 

A Better World By Design
 
 
AaronOutpost : ASP / Web Design / JavaScript / Title Dance

Title Dance Tutorial
By: Aaron B. Copyright AaronOutpost.com

This is a neat little code to cause the title of your webpage change and in turn I made it look like it's dancing. I made this code after reading an article from a book at the store. I already forgot the name of the book though. Let's review the Code

View Title Dance Example

 
<SCRIPT language=JavaScript>
<!-- START OF TITLE DANCE By: Aaron B.
var message = new Array();

message[0] = "Aaron Outpost.com West Virginia, USA"
var reps = 2;
var speed = 200;
var length = message.length;
var T = "";
var C = 0;
var mC = 0;
var s = 0;
var sT = null;
if (reps < 1) reps = 1;
function TitleDance() {
T = message[mC];
A();
}
function A() {
s++;
if (s > 8) { s = 1;}
if (s == 1) { document.title = '._.ˇ´¯`ˇ._.ˇ´¯`ˇ._.ˇ´¯`ˇ '+T+' _.ˇ´¯`ˇ._.ˇ´¯`ˇ._.ˇ´¯`ˇ.'; }
if (s == 2) { document.title = 'ˇ._.ˇ´¯`ˇ._.ˇ´¯`ˇ._.ˇ´¯` '+T+' .ˇ´¯`ˇ._.ˇ´¯`ˇ._.ˇ´¯`ˇ._'; }
if (s == 3) { document.title = '`ˇ._.ˇ´¯`ˇ._.ˇ´¯`ˇ._.ˇ´¯ '+T+' ˇ´¯`ˇ._.ˇ´¯`ˇ._.ˇ´¯`ˇ._.'; }
if (s == 4) { document.title = '¯`ˇ._.ˇ´¯`ˇ._.ˇ´¯`ˇ._.ˇ´ '+T+' ´¯`ˇ._.ˇ´¯`ˇ._.ˇ´¯`ˇ._.ˇ'; }
if (s == 5) { document.title = '´¯`ˇ._.ˇ´¯`ˇ._.ˇ´¯`ˇ._.ˇ '+T+' ¯`ˇ._.ˇ´¯`ˇ._.ˇ´¯`ˇ._.ˇ´'; }
if (s == 6) { document.title = 'ˇ´¯`ˇ._.ˇ´¯`ˇ._.ˇ´¯`ˇ._. '+T+' `ˇ._.ˇ´¯`ˇ._.ˇ´¯`ˇ._.ˇ´¯'; }
if (s == 7) { document.title = '.ˇ´¯`ˇ._.ˇ´¯`ˇ._.ˇ´¯`ˇ._ '+T+' ˇ._.ˇ´¯`ˇ._.ˇ´¯`ˇ._.ˇ´¯`'; }
if (s == 8) { document.title = '_.ˇ´¯`ˇ._.ˇ´¯`ˇ._.ˇ´¯`ˇ. '+T+' ._.ˇ´¯`ˇ._.ˇ´¯`ˇ._.ˇ´¯`ˇ'; }
if (C < (8 * reps)) {
sT = setTimeout("A()", speed);
C++;
}
else {
C = 0;
s = 0;
mC++;
if(mC > length - 1) mC = 0;
sT = null;
TitleDance();
}
}
TitleDance();
// END OF TITLE DANCE -->

View Title Dance Example

 


AaronOutpost : ASP / Web Design / JavaScript / Title Dance

 


Aaron Outpost West Virginia, USA A Mark of _-Squire-_ Creations Inc.  CopyrightŠ 2005 All Rights Reserved