0

我有 10 个具有相同类“.tile”的框,并且我编写了一段 jquery 代码,它将在文档加载时运行:

HTML:

<li>
    <a class="tile" href="#dev">
        <div class="boximg"></div>
        <div class="boxttl">
            <span class="engttl">Develope Your Mobile</span>
            <span class="fattl">آموزش و توسعه موبایل</span>
        </div>
    </a>
</li>

查询:

function func2($this) {
    if ($(this).find('.engttl').length)
        $this = this;

    if ($($this).attr('_to_animate') != 'true')
        return;

    $($this).find('.engttl').delay(2000).animate({marginTop:"-23px"},1100,'easeOutExpo',function(){
        var $this2 = this;
        setTimeout(function(){
            $($this2).animate({marginTop:"0"},1100,'easeOutExpo',function(){
                setTimeout(function(){ func2($this); },1500);
            });
        },1500);
    });
}
$('.tile').each(function(){
    $(this).attr('_to_animate', 'true');
    func2(this);
});

它按我的预期工作得很好,但我怎样才能随机化每个“.tile”之间的动画?使用我的代码,在文档加载后,我们会同时看到所有“.tile”的动画,但我想在不同的时间分别查看每个“.tile”的动画。如果有人知道该怎么做,我将不胜感激?..

4

1 回答 1

1

换掉你.delay(2000).delay(Math.random() * 2000 + 1000)

2000 和 1000 值总共延迟 1000 到 3000 毫秒。您不需要在调用中使用任何参数random()

于 2013-01-29T13:54:07.893 回答