我想将动画悬停在div上。 但它不起作用,当我的鼠标在div外,动画不起作用。为什么?
https://jsfiddle.net/udn5b9fd/
$(document).mousemove(function(e){
$("span").css({left:e.pageX - 50, top:e.pageY - 50});
});
$("div").hover(
function() {
$("span").stop().animate({"height": "100px", "width": "100px"}, 200);
},
function() {
$(this).stop().animate({"opacity": "0.5"}, 0);
},
function() {
$(this).stop().animate({"opacity": "1"}, 0);
});
答案 0 :(得分:2)
有几个修复,你应该申请:
hover
回调中移除第3个函数,因为它只有2个参数:Jquery Hover opacity, height, width
pointer-events: none
样式添加到span
元素,以防止当您的鼠标位于hoverOut
下时调用span
。查看示例以获取更多详细信息:JSFiddle example