1
divにアニメーションホバーを作りたいです。 しかし、それは動作しません、私のマウスがdivの外にあるとき、アニメーションは機能しません。どうして ?Mousemoveがホバリングでアニメ化
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);
});
あなたは予想される動作はホバー宣言だけで用とアウトのための1 ....内部の3つの機能を持つことができませんか?スパンが大きくなるとdivのホバーはヌルになります。 – DaniP