Bu forum çerez kullanır
Bu forum, kayıtlıysanız oturum açma bilgilerinizi ve değilseniz son ziyaretinizi saklamak için tanımlama bilgilerini kullanır. Çerezler, bilgisayarınızda depolanan küçük metin dokümanlardır; Bu forum tarafından oluşturulan çerezler yalnızca bu web sitesinde kullanılabilir ve güvenlik riski oluşturmaz. Bu forumdaki tanımlama bilgileri ayrıca okuduğunuz belirli konuları ve bunları en son ne zaman okuduğunuzu da izler. Lütfen bu çerezleri kabul edip etmediğinizi onaylayın.

Bu sorunun tekrar sorulmasını önlemek için, seçeneğinize bakılmaksızın tarayıcınızda bir çerez saklanacaktır. Altbilgideki bağlantıyı kullanarak istediğiniz zaman çerez ayarlarınızı değiştirebilirsiniz.

Konuyu Oyla:
  • Derecelendirme: 0/5 - 0 oy
  • 1
  • 2
  • 3
  • 4
  • 5
Büyüyüp küçülen yazı
#1
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>
Bul
Cevapla


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

Hızlı Menü:


Konuyu Okuyanlar: 1 Ziyaretçi