You can see the scrolling message the Java Script produces on the bottom of the page.
| FUNCTION CALL (copy/paste directly from here) |
<body onLoad="timerONE=window.setTimeout('scrollit(100)',500)">
| SOURCE (copy/paste directly from here) |
|
<script language="JavaScript">
<!-- Hide the script from old browsers --
function scrollit(seed){
var m1=" THIS IS WHERE YOUR MESSAGE GOES ";
var msg=m1; var out=" "; var c=0;
if (seed>100){
seed--;
var cmd="scrollit(" + seed + ")";
timerTwo=window.setTimeout(cmd,7);
}
else if (seed<=100 && seed>0){
for(c=0 ; c < seed ; c++) out+=" ";
out+=msg; seed--;
var cmd="scrollit(" + seed + ")";
window.status=out;
timerTwo=window.setTimeout(cmd,7);
}
else if (seed <= 0){
if (-seed < msg.length){
out+=msg.substring(-seed,msg.length);
seed--;
var cmd="scrollit(" + seed + ")";
window.status=out;
timerTwo=window.setTimeout(cmd,7);
}
else{
window.status=" ";
timerTwo=window.setTimeout("scrollit(100)",75);
}
}
}
// --End Hiding Here -->
</script>
//<body onLoad="timerONE=window.setTimeout('scrollit(100)',500)"> |
|
|