標籤:js判斷滑鼠移入移出方向
前段時間,偶然看到百度百科裡面,有一DIV反轉的效果,試了一個居然可以根據滑鼠移入移出的方向,進行不同的反轉;所以,心裡就犯嘀咕,起了疑惑,一個DIV容器如何知道滑鼠移入移出方向,進而產生不同的行為::
650) this.width=650;" src="http://s3.51cto.com/wyfs02/M00/57/11/wKiom1SQM_ij7OKoAACdS-1LWU8037.jpg" title="映像 3.jpg" alt="wKiom1SQM_ij7OKoAACdS-1LWU8037.jpg" />
自己試了一下,網上網友說的用4個div緊緊包裹住容器,如下所示:
650) this.width=650;" src="http://s3.51cto.com/wyfs02/M01/57/0E/wKioL1SQNTyhr9j0AACzkXHoPSo816.jpg" title="mouse002.jpg" alt="wKioL1SQNTyhr9j0AACzkXHoPSo816.jpg" />
這中做法在移入,移出的速度過快時,有bug不好用;
最後在一篇部落格裡面找到了一個比較好的方法:代碼如下
$("#wrap").bind("mouseenter mouseleave",
function(e) {
var w = $(this).width();
var h = $(this).height();
var x = (e.pageX - this.offsetLeft - (w / 2)) * (w > h ? (h / w) : 1);
var y = (e.pageY - this.offsetTop - (h / 2)) * (h > w ? (w / h) : 1);
var direction = Math.round((((Math.atan2(y, x) * (180 / Math.PI)) + 180) / 90) + 3) % 4;
var eventType = e.type;
var dirName = new Array(‘上方‘,‘右側‘,‘下方‘,‘左側‘);
if(e.type == ‘mouseenter‘){
$(this).html(dirName[direction]+‘進入‘);
}else{
$(this).html(dirName[direction]+‘離開‘);
}
});
充分利用幾何數學實現了這個功能,真心不錯;分享給大家,示範代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>判斷滑鼠進入方向</title>
</head>
<body>
<style>
html,body{margin:0;padding:0;}
#wrap{width:300px;height:300px;background:#33aa00;margin:50px;display:inline-block;font-size:50px;text-align:center;line-height:300px;}
</style>
<div id="wrap">
方向反饋
</div>
<script type="text/javascript" src="http://common.cnblogs.com/script/jquery.js"></script>
<script>
$("#wrap").bind("mouseenter mouseleave",
function(e) {
var w = $(this).width();
var h = $(this).height();
var x = (e.pageX - this.offsetLeft - (w / 2)) * (w > h ? (h / w) : 1);
var y = (e.pageY - this.offsetTop - (h / 2)) * (h > w ? (w / h) : 1);
var direction = Math.round((((Math.atan2(y, x) * (180 / Math.PI)) + 180) / 90) + 3) % 4;
var eventType = e.type;
var dirName = new Array(‘上方‘,‘右側‘,‘下方‘,‘左側‘);
if(e.type == ‘mouseenter‘){
$(this).html(dirName[direction]+‘進入‘);
}else{
$(this).html(dirName[direction]+‘離開‘);
}
});
</script>
</body>
</html>
本文出自 “7439523” 部落格,請務必保留此出處http://7449523.blog.51cto.com/7439523/1590833
js判斷滑鼠移入移出方向