Büyüyüp küçülen yazı

0 Replies, 4102 Views

Kod:
<script language="Javascript1.2">
<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http:/www.ahmetx.net

var tags_before_clock = "<center>";
var tags_after_clock  = "</center>";

var speed = 100;
var speed2 = 2000;
var biggest_text = 28;

var x = 0;
var y = 0;
var themessage, size;
var esize = "</font>";

function initArray() {

this.length = initArray.arguments.length;
  for (var i = 0; i < this.length; i++) {
  this[i] = initArray.arguments[i];
  }
}

var themessage2 = new initArray(
"This is the Growing Banner.",
"It looks a lot cooler than other banners.",
"This is really easy to conform to your page.",
"Just don't make it too long or else..."
);

if(navigator.appName == "Netscape") {
document.write('<layer id="wds"></layer>
');
}

if (navigator.appVersion.indexOf("MSIE") != -1){
document.write('<span id="wds"></span>
');
}

function upwords(){

themessage = themessage2[y];

if (x < biggest_text) {
x++;
setTimeout("upwords()",speed);
}

else {
setTimeout("downwords()",speed2);
}

if(navigator.appName == "Netscape") {
  size = "<font point-size='"+x+"pt'>";
  document.wds.document.write(size+tags_before_clock+themessage
                              +tags_after_clock+esize);
  document.wds.document.close();
}

if (navigator.appVersion.indexOf("MSIE") != -1){
  wds.innerHTML = tags_before_clock+themessage+tags_after_clock;
  wds.style.fontSize=x+'px'
}
}

function downwords(){

if (x > 1) {
x--;
setTimeout("downwords()",speed);
}

else {
setTimeout("upwords()",speed2);
y++;
if (y > themessage2.length - 1) y = 0;
}

if(navigator.appName == "Netscape") {
  size = "<font point-size='"+x+"pt'>";
  document.wds.document.write(size+tags_before_clock+themessage
                              +tags_after_clock+esize);
  document.wds.document.close();
}

if (navigator.appVersion.indexOf("MSIE") != -1){
  wds.innerHTML = tags_before_clock+themessage+tags_after_clock;
  wds.style.fontSize=x+'px'
}
}

setTimeout("upwords()",speed);
//-->
</script>

Konu ile Alakalı Benzer Konular
Konular Yazar Yorumlar Okunma Son Yorum
  Üste doğru kayan yazı koray15 0 4,751 03-02-2006, 19:56
Son Yorum: koray15
  Kutu içinde kayan yazı koray15 0 5,429 03-02-2006, 19:52
Son Yorum: koray15



Konuyu Okuyanlar: