Would you like to react to this message? Create an account in a few clicks or log in to continue.


 
AnasayfaPortalAramaLatest imagesKayıt OlGiriş yap

 

 Mause takip eden yazı oluşturun

Aşağa gitmek 
YazarMesaj
UzmanMotorcU
Geyik Takımı
Geyik Takımı
UzmanMotorcU


Yengeç Mesaj Sayısı : 45
Teşekkür Edilen Sayısı.. : 115
Rep Gücü : 2
Kayıt tarihi : 15/03/10
Yaş : 33

Mause takip eden yazı oluşturun Empty
MesajKonu: Mause takip eden yazı oluşturun   Mause takip eden yazı oluşturun EmptyPtsi Mart 15, 2010 11:51 am

Kod:
<html>
<head>
<title>Mouse Follow</title>
<script language=javascript>

//Five Main Variables:

var phrase = "JavaScript"; //The phrase that is to wave behind the mouse.
var bouncespeed = 10;      //With what intensity it waves.
var speed = 1;            //How fast it waves (on a millisecond scale).
var Xoffset = 15;          //Distance from mouse along X axis.
var Yoffset = 15;          //Distance from mouse along Y axis.
var color = "black";      //Color of text.


//Variables that don't need to be changed:

var letters = new Array();
letters = phrase.split('');
var object;
var theta = 0;
var MouseX = 0;
var MouseY = 0;

//The rest of the code, change at your own risk:

document.onmousemove=mouse;

function mouse(e) {
MouseX = event.x + Xoffset;
MouseY = event.y + Yoffset;
window.status = "(" + MouseX + ", " + MouseY + ")";
}

function createobjects() {
for (i=0; i < letters.length; i++) {
document.write('<div id="letterwave" style="position:absolute;"><font color='+color+'>'+letters[i]+'</font></div>');
}
object = document.all('letterwave');
objectmove();
}

function objectmove() {
theta += 4;
for (i=0; i<letters.length; i++) {
object[i].style.top = MouseY;
var leftnum = MouseX + i * 10 + (Math.sin(theta * Math.PI / 180 + (2 * Math.PI / object.length * i))) * bouncespeed;
if (leftnum < 0) {
leftnum *= -1;
}
object[i].style.left = leftnum;
}
if (theta > 360) {
theta = 0;
}
setTimeout("objectmove();", speed);
}

</script>
</head>
<body>
<script>
createobjects();
</script>
</body>
</html>
Sayfa başına dön Aşağa gitmek
 
Mause takip eden yazı oluşturun
Sayfa başına dön 
1 sayfadaki 1 sayfası
 Similar topics
-
» Fareyi Takip Eden Takvim
» Mause Efekti
» Mause'yi url linki koyduğunuz yazıya götürdüğünüzde yazının linkine tıklamadan o adrese gitmesi
» Yazı Ortalama Kodu
» Haraketli Yazı kodu

Bu forumun müsaadesi var:Bu forumdaki mesajlara cevap veremezsiniz
 :: Profesyönel Alan (Sadece kodlar lütfen, forum harici link vermeyin) :: JavaScript-
Buraya geçin: