我正在尝试使用.animate()
jQuery函数悬停 div时创建一个小动画。
如果你看看代码片段,你会发现鼠标离开div和动画启动之间有一个非常奇怪的延迟。
它确实具有.animate()
功能,因为当鼠标离开div并且没有任何奇怪的延迟时会显示console.log
。
我是否遗漏了某些内容或......任何想法都会受到欢迎!
谢谢!
$(document).ready(function() {
$(".square").hover(function() {
var _this = this;
$(_this).find(".square-hover").eq(0).animate({
top: "0px",
}, 750)
})
$(".square").mouseleave(function() {
var _this = this;
console.log("mouseleave triggered");
$(_this).find(".square-hover").eq(0).animate({
top: "-300px",
}, 100)
});
})

.square {
box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
padding: 0;
border: 1px solid rgba(255, 255, 255, 0.1);
height: 200px;
-webkit-transition-property: background-color;
-webkit-transition-duration: 0.2s;
overflow: hidden;
margin-top: 5px
}
.square-hover{
position: absolute;
top: -300px;
width: 100%;
height: 100%;
background-color: rgba(29, 233, 182, 0.85);
}

<script src="http://code.jquery.com/ui/1.12.0/jquery-ui.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<div class="col-xs-6 col-xs-offset-3 square">
<div class="square-hover"></div>
</div>
&#13;
答案 0 :(得分:2)
问题是因为您使用的是hover
和mouseleave
。 hover
事件处理程序实际上是独立的mouseenter
和mouseleave
处理程序 - 因此您实际上附加了1 mouseenter
和2 mouseleave
。这是您的问题的原因。
如果您更改代码以将两个函数传递给hover
(第一个用于mouseenter
,第二个用于mouseleave
),则代码可以正常运行:
$(".square").hover(function() {
$(this).find(".square-hover").eq(0).stop(true).animate({
top: "0px",
}, 750)
}, function() {
$(this).find(".square-hover").eq(0).stop(true).animate({
top: "-300px",
}, 100)
});
另请注意在上面使用stop(true)
来防止连续事件阻塞动画队列。