View Single Post
Old 12-16-2001, 04:38 PM  
spacedog
Yes that IS me. Bitch.
 
Industry Role:
Join Date: Nov 2001
Posts: 14,149
Remove the [ ] tags & replace with < > for this to work....

Place this in the head section of your html..

[SCRIPT LANGUAGE="JavaScript"]
[!-- Begin
var hellotext = "YOUR TEXT GOES HERE!"
var thetext = "";
var started = false;
var step = 0;
var times = 1;

function welcometext() {
times--;
if (!times) {
if (!started) {
started = true;
window.status = hellotext;
setTimeout("anim()", 1);
}
thetext = hellotext;
}
}

function anim() {
step++;
if (step==7) step = 1;
if (step==1) window.status = '>===' + thetext + '===<';
if (step==2) window.status = '=>==' + thetext + '==<=';
if (step==3) window.status = '>=>=' + thetext + '=<=<';
if (step==4) window.status = '=>=>' + thetext + '<=<=';
if (step==5) window.status = '==>=' + thetext + '=<==';
if (step==6) window.status = '===>' + thetext + '<==='
setTimeout("anim()", 200);
}
// End --]
[/script]

This is just one example..

------------------
Here's Who I Use to Make My Money!
And This is my Fucking Website!

[This message has been edited by spacedog (edited 12-16-2001).]
spacedog is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote