gpt4 book ai didi

javascript - 我如何在 mouseleave 上淡出这个淡入淡出?

转载 作者:行者123 更新时间:2023-11-30 17:33:36 24 4
gpt4 key购买 nike

我希望能够淡出刚刚淡入的 div,但我无法让它工作。我有以下代码:

    $(document).ready(function() {
$('.upgrade').mouseenter(function() {
var modal = $(this).data('modal');
// alert(modal);
$('.' + modal).fadeIn(200);
}).mouseleave(function() {
$('.' + modal).stop().fadeOut(200);
});
});

<div class="upgrade" id="upgrade-1" data-modal="bonus">
<!-- text -->
</div>

<div class="bonus">
<!-- bonus product text -->
</div>

最佳答案

您需要在 mouseenter 函数之外声明模态

$(document).ready(function() {
var modal="";//declare here
$('.upgrade').mouseenter(function() {
modal = $(this).data('modal');
$('.' + modal).fadeIn(200);
}).mouseleave(function() {
$('.' + modal).stop().fadeOut(200);
});
});

DEMO

关于javascript - 我如何在 mouseleave 上淡出这个淡入淡出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22480976/

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