gpt4 book ai didi

jQuery 快速悬停即使在停止鼠标后也会继续触发事件

转载 作者:行者123 更新时间:2023-11-28 09:16:48 25 4
gpt4 key购买 nike

我有一个 div,它的宽度通过 jquery 动画改变。但是即使我在鼠标指针快速退出后停止鼠标,jQuery 的悬停功能也会继续触发。查看下面的运行代码并快速移动鼠标几次然后停止鼠标,您将看到事件不断触发。我怎样才能解决这个问题。需要较慢速度的动画无法将其删除作为修复。

    jQuery(document).ready(function($){

$(".xixouter").hover(function() {
$(".xixouter").animate({ width: "95%"}, 500, "swing");
$(".contextent").animate({ opacity: "1"}, 450);///
//$('.contextent').css("opacity","1");
},
function() {
//$('.contextent').css("opacity","0");
$(".contextent").animate({opacity: "0"}, 450); ////
$(".xixouter").animate({width: "240px"}, 500, "swing");
});
});
.xixouter{
position:relative;
padding: 15px;
height: 100px;
width: 240px;
margin:0px auto;
overflow:hidden;
background: red;
}
.contextent{
padding: 40px !important;
display:block;
opacity: 0;
color: #555;
font-size: 14px;
text-align: center;
line-height: 1.8;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>


<div class="xixouter">
<span class="contextent">
content
</span>
</div>

最佳答案

使用队列:false

    jQuery(document).ready(function($){

$(".xixouter").hover(function() {
$(".xixouter").animate({
width: "95%"},
{queue: false }, 500, "swing");
$(".contextent").animate({ opacity: "1"}, {queue: false }, 450);
},
function() {
$(".contextent").animate({opacity: "0"}, {queue: false }, 450);
$(".xixouter").animate({width: "240px"}, {queue: false }, 500, "swing");
});
});
.xixouter{
position:relative;
padding: 15px;
height: 100px;
width: 240px;
margin:0px auto;
overflow:hidden;
background: red;
}
.contextent{
padding: 40px !important;
display:block;
opacity: 0;
color: #555;
font-size: 14px;
text-align: center;
line-height: 1.8;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>


<div class="xixouter">
<span class="contextent">
content
</span>
</div>

关于jQuery 快速悬停即使在停止鼠标后也会继续触发事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26273280/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com