gpt4 book ai didi

Javascript/jQuery,动画结束后显示div

转载 作者:行者123 更新时间:2023-12-02 18:57:52 25 4
gpt4 key购买 nike

这是一个工作的 jsfiddle:

http://jsfiddle.net/YnT2X/

我不希望 div 在返回动画完成之后才显示。

jQuery:

$(document).ready(function () {
$("#menu").hover(function () {
$('#arrow').hide();
$("body").children(':not(#menu)').css("-webkit-filter", "blur(2px)");
$(this, '#arrow').stop().animate({
width: "200px"
}, 250,

function () {
if ($('#menu').width() == '200') {
$('.text').fadeIn(200);
}
});
}, function () {
$(this).stop().animate({
width: "0px"
}, 250)
$("body").children(':not(#menu)').css("-webkit-filter", "none");
$('.text').fadeOut('fast');
$('#arrow').show();
});
});

最佳答案

试试这个: fiddle :http://jsfiddle.net/upycZ/

$(document).ready(function () {
$("#menu").hover(function () {
$('#arrow').hide();
$("body").children(':not(#menu)').css("-webkit-filter", "blur(2px)");
$(this, '#arrow').stop().animate({
width: "200px"
}, 250,

function () {
if ($('#menu').width() == '200') {
$('.text').fadeIn(200);
}
});
}, function () {
$(this).stop().animate({
width: "0px"
}, 250,function(){
$('#arrow').show(); //<- Shows arrow after run
});
$("body").children(':not(#menu)').css("-webkit-filter", "none");
$('.text').fadeOut('fast');

});
});

关于Javascript/jQuery,动画结束后显示div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15147114/

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