PDA

View Full Version : a question about the provided link in the subject


shaweetareek
05-22-2006, 12:53 AM
Hello every one

If you click on the bellow web site, as soon as you open it you can notice at the buttom of the page some texts animated and say "www.zakariamusic.com (created by ,,,,,,,,,,)"

I was wondering if any one could tell me how to put that on a web site if you can.

I will appreciate your help
Thank you

vinyl-junkie
05-22-2006, 07:40 AM
Just view source for that web page. It's a javascript at the bottom of the source code that produces that effect:

<SCRIPT language=JavaScript>
<!--

/*
(www.zakariamusic.com)
*/

//set message:
msg = "www.zakariamusic.com (Created by Sarhang Bajalan)";

timeID = 10;
stcnt = 16;
wmsg = new Array(33);
wmsg[0]=msg;
blnk = " ";
for (i=1; i<32; i++)
{
b = blnk.substring(0,i);
wmsg[i]="";
for (j=0; j<msg.length; j++) wmsg[i]=wmsg[i]+msg.charAt(j)+b;
}

function wiper()
{
if (stcnt > -1) str = wmsg[stcnt]; else str = wmsg[0];
if (stcnt-- < -40) stcnt=31;
status = str;
clearTimeout(timeID);
timeID = setTimeout("wiper()",100);
}

wiper()
// -->
</SCRIPT>