<!-- TWO STEPS TO INSTALL
INFORMATION BOX:
1. Paste the coding into the HEAD of your HTML document
2. Add the last code into the BODY of your HTML document -->
<!-- STEP ONE: Copy this code into the HEAD of your HTML document -->
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!--- Begin
var CurrentMsg = 'hello ';
function update(msg) {
var pad_str="";
n = msg.length;
if(n<72) {
pad = (73-n)/2;
for(var i=0; i<pad; i++) {
pad_str+=" ";
}
}
CurrentMsg = pad_str + msg;
document.messages.field.value = CurrentMsg;
clearTimeout(timer);
timer = setTimeout("idleMsg()",4000);
}
function MakeArray(n) {
this.length=n;
for(var i = 1; i<= n; i++) {
this[i] = "";
}
return(this);
}
var index = 1;
var notice_num = 10;
var notices = new MakeArray(notice_num);
notices[1] = "Welcome to NiTrOMaN`s Home Page!";
notices[2] = "Bu Java Yazilimi Kolay Kullanisli ve Zevkidir..";
notices[3] = "Burada Kendiniz icin Yazilari Özellestirmek icin ";
notices[4] = "notice[1], notice[2].. Gibi Olan Kisimlardaki Yazilari .";
notices[5] = "istegiginize Göre Degistirip Kendinize Özel Yapmaniz..!";
notices[6] = "Bu Kutucugu Banner Olarakta Kullanabilirsiniz..!.";
notices[7] = "Bu Yazilim Bir Java Script Örnegidir..!.";
notices[8] = "Kutucukta Yazinin Hizini Ayarlayabilirsiniz..! Zaman Birimi
MiliSaniyedir";
notices[9] = "Just change (\"idleMsg()\",4000) to the speed you
want.";
notices[10] = "www.nitroman.cjb.net internetteki tek adresiniz..!.";
var timer = setTimeout('idleMsg()',4000);
function nochange() {
document.messages.field.value = CurrentMsg;
}
function idleMsg() {
update(notices[index++]);
if(index>notice_num) {
index=1;
}
}
// End -->
</SCRIPT>
<!-- STEP TWO: Put this code into the BODY of your HTML document -->
<BODY>
<CENTER>
<FORM name="messages" onSubmit="return false">
<input type="text" name="field" size=73 value=""
onFocus="self.status='This is a JavaScript info. field'; return true"
onChange="nochange()">
</FORM>
</CENTER>
<p><center>
<font face="arial, helvetica" size="-2">Free JavaScripts
provided<br>
by <a href="http://javascriptsource.com">The JavaScript
Source</a></font>
</center><p>
<!-- Script Size: 2.92 KB -->
|