|
|
Scrolling text into the status bar
This can be done with the help of Javascript. Look at your status bar (down on the left side of the screen). You can change the message (at var m1 to var m4) to whatever you like. Copy and paste the following code into your page:
<!-- Copy this code into
the HEAD of your document -->
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function scrollit(seed) {
var m1 = "Welcome to My Place! ";
var m2 = "..... Lots of fun stuff here! ";
var m3 = "..... Enjoy! ";
var m4 = "..... Come back often! ";
var msg=m1+m2+m3+m4;
var out = " ";
var c = 1;
if (seed > 100) {
seed--;
cmd="scrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 100 && seed > 0) {
for (c=0 ; c < seed ; c++) {
out+=" ";
}
out+=msg;
seed--;
window.status=out;
cmd="scrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 0) {
if (-seed < msg.length) {
out+=msg.substring(-seed,msg.length);
seed--;
window.status=out;
cmd="scrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else {
window.status=" ";
timerTwo=window.setTimeout("scrollit(100)",75);
}
}
}
// End -->
</SCRIPT>
<!-- Add this into the BODY tag -->
<BODY onLoad="scrollit(100)">
<!-- Script Done -->
Tips and Tricks
|
|