1.Aşağıdaki javaScript kodlarını sayfada <head >..</Head>tagının arasına gelecek şekilde kopyalayın.
<script language="JavaScript">
<!--
/* MjM'S JAVA CODENAME = FLASH
This JavaScript Code was written by MjM for Hyperchat UK
I am not responsible for any damage caused by my code.
This code can be modified as long as the Author's Name is still attached.
Email :highonahog@hotmail.com
© Copyright 1996
*/
var yourwords = "Sitemizee Hoş Geldiniz... WebCin.Net";
var speed = 150;
var control = 1;
function flash()
{
if (control == 1)
{
window.status=yourwords;
control=0;
}
else
{
window.status="";
control=1;
}
setTimeout("flash();",speed);
}
// -->
</script>
2.Body tag'ının içine yazılacak kod.
<body onload="flash();">
|