23

我编写了一个 jquery 脚本,允许我淡入淡出 div,然后重复。代码工作正常。但是,当我尝试添加延迟时(我希望 div 在淡出之前保持几秒钟),它无法正常工作。我尝试在代码中的几个地方添加延迟,但似乎都没有正常工作。我正在使用 Jquery 版本 1.9.1

这是我写的脚本:

$(document).ready(function(){
   ShowPostDiv(0);
});

function ShowPostDiv(divIndex)
{
    $(".home_entry_txt").hide();

    if(divIndex >= $(".rotate_hide").length)
    {
        divIndex = 0;
    }
    var divPostHtml = $(".rotate_hide:eq("+divIndex+")").html();
    $(".home_entry_txt").html(divPostHtml); 
    $(".home_entry_txt").fadeIn(3000, function(){
             $(".home_entry_txt").fadeOut("slow");
        });
    divIndex++;
    setTimeout("ShowPostDiv("+divIndex+")", 4000);
}
4

3 回答 3

42

你可以写

$(".home_entry_txt").fadeIn(3000).delay(1000).fadeOut("slow");
于 2013-03-28T16:05:38.417 回答
5

你试过.delay()吗?就像是:

$(".home_entry_txt").fadeIn().delay(200).queue(function(next) {
$(".home_entry_txt").fadeOut("slow");
});
于 2013-03-28T16:09:23.997 回答
3

尝试这个

$(document).ready(function(){
   ShowPostDiv(0);
});

function ShowPostDiv(divIndex)
{
    $(".home_entry_txt").hide();

    if(divIndex >= $(".rotate_hide").length)
    {
        divIndex = 0;
    }
    var divPostHtml = $(".rotate_hide:eq("+divIndex+")").html();
    $(".home_entry_txt").html(divPostHtml); 
    $(".home_entry_txt").fadeIn(3000, function(){
        setTimeout(function(){
            $(".home_entry_txt").fadeOut("slow");
        },4000);
    });
    divIndex++;
}
于 2013-03-28T16:06:20.543 回答