Java Durum Çubuğunda Mesaj-6

  • Konbuyu başlatan Konbuyu başlatan Z1rT
  • Başlangıç tarihi Başlangıç tarihi
9
EXE RANK

Z1rT

Fexe Kullanıcısı
Puanları 0
Çözümler 0
Katılım
26 Kas 2009
Mesajlar
9,190
Tepkime puanı
0
Puanları
0
Yaş
33
Web sitesi
www.netbilgini.net
Z1rT
PHP:
<script language="JavaScript">

<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

var current = 0
var x = 0
var speed = 100
var back = 20
var speed2 = 2000
var back2 = 1500

function initArray(n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
  }
}

var typ = new Array()
  
typ[0]="Javascript";
typ[1]="Bankası";
typ[2]="Hazırlayan";
typ[3]="Serhat Sarıkaya";


function typewrite() {
var m = typ[current]

window.status = m.substring(0, x++)

if (x == m.length + 1) {
setTimeout("erase()", back2)
}

else {
setTimeout("typewrite()", speed)
}
}

function erase() {
var m = typ[current]

window.status = m.substring(0, x--)

if (x < 0) {
current++
setTimeout("typewrite()", speed2)

if (current > typ.length - 1) {
current = 0
}
}

else {
setTimeout("erase()", back)
}
}
typewrite()
//-->

</script>
 
Geri
Üst