js判斷滑鼠移入移出方向

來源:互聯網
上載者:User

標籤: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判斷滑鼠移入移出方向

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.