• Web sitemizin içeriğine ve tüm hizmetlerimize erişim sağlamak için Web sitemize kayıt olmalı ya da giriş yapmalısınız. Web sitemize üye olmak tamamen ücretsizdir.
  • Sohbetokey.com ile canlı okey oynamaya ne dersin? Hem sohbet et, hem mobil okey oyna!
  • Soru mu? Sorun mu? ''Bir Sorum Var?'' sistemimiz aktiftir. Paylaşın beraber çözüm üretelim.

Başlık Cubuğu Animasyonu-1

Üyelik Tarihi
7 Ocak 2015
Konular
4,091
Mesajlar
4,274
MFC Puanı
40
Kod:
<SCRIPT LANGUAGE="JavaScript">
<!-- Original: David Sosnowski (support@codebelly.com) -->
<!-- Begin
var message = new Array();
// Set your messages below -- follow the pattern.
// To add more messages, just add more elements to the array. message[0] = "The JavaScript Source"; message[1] = "Free JavaScripts"; message[2] = "JavaScript Forum"; message[3] = "Your Message Here"; message[4] = "Add as many messages as you want"; message[5] = "IE and NN6"; message[6] = "";

// Set the number of repetitions (how many times the arrow
// cycle repeats with each message).
var reps = 2;
var speed = 200; // Set the overall speed (larger number = slower action).

// DO NOT EDIT BELOW THIS LINE.
var p = message.length;
var T = "";
var C = 0;
var mC = 0;
var s = 0;
var sT = null;
if (reps < 1) reps = 1;
function doTheThing() {
T = message[mC];
A();
}
function A() {
s++;
if (s > 8) { s = 1;}
// you can fiddle with the patterns here...
if (s == 1) { ********.title = '||||||====||| '+T+' -----'; } if (s == 2) { ********.title = '|||=|||===||| '+T+' -----'; } if (s == 3) { ********.title = '|||==|||==||| '+T+' -----'; } if (s == 4) { ********.title = '|||===|||=||| '+T+' -----'; } if (s == 5) { ********.title = '|||====|||||| '+T+' -----'; } if (s == 6) { ********.title = '|||===|||=||| '+T+' -----'; } if (s == 7) { ********.title = '|||==|||==||| '+T+' -----'; } if (s == 8) { ********.title = '|||=|||===||| '+T+' -----'; } if (C < (8 * reps)) { sT = setTimeout("A()", speed);
C++;
}
else {
C = 0;
s = 0;
mC++;
if(mC > p - 1) mC = 0;
sT = null;
doTheThing();
}
}
doTheThing();
// End -->
</script>
 
Üst