判断鼠标移入元素方向
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断鼠标移入元素方向相关的知识,希望对你有一定的参考价值。
$(this).bind("mouseenter mouseleave",function(e){ var w = $(this).width(); var h = $(this).height(); var x = (e.pageX - $(this).offset().left - (w / 2)) * (w > h ? (h / w) : 1); var y = (e.pageY - $(this).offset().top - (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\'左侧\'); if(e.type == \'mouseenter\'){ //移入 }else{ //移出 } })
以上是关于判断鼠标移入元素方向的主要内容,如果未能解决你的问题,请参考以下文章