Menampilkan Koordinat Sumbu-X dan Sumbu-Y Pointer Mouse
jQuery
$(window).mousemove(function(e) {
$('h2.deskripsi').text('X = ' + e.pageX + ', Y = ' + e.pageY);
});
HTML
<h2 class='deskripsi'>Koordinat...</h2>
Lihat Demo
Set Posisi Elemen Berdasarkan Koordinat Sumbu-X dan Sumbu-Y Pointer Mouse
jQuery
$(window).mousemove(function(e) {
$('#box').css({left:e.pageX, top:e.pageY});
});
HTML
<div id='box'></div>
CSS
#box {
position:absolute; /* Penting! */
width:150px;
height:150px;
background-color:#E77912;
margin:30px;
}
Lihat Demo
Labels: jQuery, Lanjutan, Potongan
2 Comments:
weh bang ini boleh juga nih, buat ngukur lebar dan tinggi mantap lah
By Sinto, at Friday, January 6, 2012 at 8:33:00 AM GMT+7
Akhirnya dapat juga, :-bd
By uki, at Friday, June 15, 2012 at 3:35:00 PM GMT+7
Post a Comment
<< Home