码迷,mamicode.com
首页 > 其他好文 > 详细

【回忆1314】鼠标离开方向检测

时间:2015-05-04 13:25:39      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:

直接看效果点这里

<html>
<head>鼠标离开方向检测</head>
<body>
<div id="msg">鼠标放到框上,然后移开。</div>
<div id="wrap" style="width:200px; height: 100px; line-height:30px; margin: 100px auto; text-align: center; border: 1px solid #99bbe8;">↖↑↗<br/>← →<br/>↙↓↘</div>
<script src="http://common.cnblogs.com/script/jquery.js"></script>
<script>
$("#wrap").on("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) / 45) + 3) % 8;
    var dirName = [右下, , 左下, , 左上, , 右上, ];
    if(e.type == mouseenter){
        $("#msg").html(dirName[direction]+-进入);
    }else{
        $(#msg).html(dirName[direction]+-离开);
    }
});
</script>
</body>
</html>

 

【回忆1314】鼠标离开方向检测

标签:

原文地址:http://www.cnblogs.com/jununx/p/4472894.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!