Cursor Berbayang

Demo :

gerakan cursornya disini !

Cursor akan terlihat, jika Blogspot anda dengan background putih...




Cara membuatnya

Dari Dashboard >> Design >> Edit HTML.


Letakkan didalam pemilih
dibawah body{
........
diatas }

overflow-x: hidden;

Contoh :

body{
overflow-x: hidden;
}


Penempatannya
dibawah <body>
........
diatas </body>

<script type='text/javascript'>
//<![CDATA[

/*
Cursor Berbayang by Marcin Wojtowicz [one_spook@hotmail.com] 
Featured on JavaScript Kit (http://www.javascriptkit.com/script/script2/cursortrail.shtml)
*/

var trailLength = 20 //Jumlah Bayangan setiap digerakkan
var path = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiwCj8fe76O1fGJdlrcu28k2FvtJ504nnQus-exiIcrPcVIUK2_G5Zwq-EHyXg3C9dPLUzi_Oc8xybx35E802MsdEezt2EWXHp_I-GrGJNbl1bWHseytmpFpbpai0jFZqMcAtfpB2yS14-c/s1600/cursor-Blog+Nano+Yulianto.gif"

var standardbody=(document.compatMode=="CSS1Compat")? document.documentElement : document.body //create reference to common "body" across doctypes
var i,d = 0

function initTrail() { // prepares the script
 images = new Array() // prepare the image array
 for (i = 0; i < parseInt(trailLength); i++) {
  images[i] = new Image()
  images[i].src = path
 }
 storage = new Array() // prepare the storage for the coordinates
 for (i = 0; i < images.length*3; i++) {
  storage[i] = 0
 }
 for (i = 0; i < images.length; i++) { // make divs for IE and layers for Navigator
  document.write('<div id="obj' + i + '" style="position: absolute; z-Index: 100; height: 0; width: 0"><img src="' + images[i].src + '"></div>')
 }
 trail()
}
function trail() { // trailing function
 for (i = 0; i < images.length; i++) { // for every div/layer
  document.getElementById("obj" + i).style.top = storage[d]+'px' // the Y-coordinate
  document.getElementById("obj" + i).style.left = + storage[d+1]+'px' // the X-coordinate
  d = d+2
 }
 for (i = storage.length; i >= 2; i--) { // save the coordinate for the div/layer that's behind
  storage[i] = storage[i-2]
 }
 d = 0 // reset for future use
 var timer = setTimeout("trail()",10) // call recursively 
}
function processEvent(e) { // catches and processes the mousemove event 
 if (window.event) { // for IE
  storage[0] = window.event.y+standardbody.scrollTop+10
  storage[1] = window.event.x+standardbody.scrollLeft+10
 } else {
  storage[0] = e.pageY+12
  storage[1] = e.pageX+12
 }
}

 initTrail() 
 document.onmousemove = processEvent // start capturing

//]]>
</script>



Lihat juga ini : Tulisan yang selalu mengikuti

Credit : JavaScript Kit

Alhamdulillah

0 comments:


Posting Komentar


Creative Commons License
Cursor Berbayang by Nano Yulianto is licensed under a Creative Commons Attribution 3.0 Unported License.
Based on a work at http://nanoyulianto.blogspot.com/2011/01/cursor-berbayang.html.
Permissions beyond the scope of this license may be available at http://nanoyulianto.blogspot.com/.