转 js判断鼠标进入容器的方向

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
</head>
<body>
<div id="wrap" style="width:600px;height:300px;border:1px solid red;margin:200px;"></div>
<div id="result"></div>
</body>
<script src="js/jquery-1.7.2.min.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; //direction的值为“0,1,2,3”分别对应着“上,右,下,左”
 var eventType = e.type;
 var dirName = new Array('上方','右侧','下方','左侧');
 if(e.type == 'mouseenter'){
            $("#result").html(dirName[direction]+'进入');
 }else{
            $('#result').html(dirName[direction]+'离开');
 }
    });
</script>
</html>


你可能感兴趣的:(转 js判断鼠标进入容器的方向)