5

我正在尝试编写一些 jquery,它将通过指定的无序列表/dom 元素并为每个列表项/子项分配一个 CSS(动画)类。我还想在 .addClass 之间设置一个可调整的延迟时间。

我尝试过的一切都失败了。

例如:

<ul>
   <li>Item 1</li>
   <li>Item 2</li>
   <li>Item 3</li>
   <li>Item 4</li>
</ul>

变成:

<ul>
   <li class="animation">Item 1</li>
     (50ms delay)
   <li class="animation">Item 2</li>
     (50ms delay)
   <li class="animation">Item 3</li>
     (50ms delay)
   <li class="animation">Item 4</li>
     (50ms delay)
</ul>

有什么想法吗?

4

4 回答 4

14

这在这里有效:

$('ul li').each(function(i){
    var t = $(this);
    setTimeout(function(){ t.addClass('animation'); }, (i+1) * 50);
});

http://jsfiddle.net/GCHSW/1/

于 2012-06-22T23:02:11.713 回答
1

考虑一下:

HTML:

<ul id="myList">
   <li>Item 1</li>
   <li>Item 2</li>
   <li>Item 3</li>
   <li>Item 4</li>
</ul>

Javascript:

$("#myList li").each(function(i, li) {
    var $list = $(this).closest('ul');
    $list.queue(function() {
        $(li).addClass('animation');
        $list.dequeue();
    }).delay(50);
});

见小提琴:http: //jsfiddle.net/DZPn7/2/

虽然这既不简洁也不高效,但它是 jQuery 纯粹主义者的解决方案。

于 2012-06-23T00:06:56.817 回答
1

我有 2 种动画方式(使用 jQuery 和 CSS3 Transitions + .addClass)。

因此,您可以尝试使用 jQuery,例如:

$('#myList li').each(function(i){
   $(this).delay(50*i).animate({opacity: 1},250);
});

并使用 CSS3 过渡:

$('#myList li').not('.animation').each(function(i){
    setTimeout(function(){
       $('#myList li').eq(i).addClass('animation');
    },50*i);
});

享受!

于 2014-01-04T08:28:59.790 回答
0

Although the answer above does a good job of approaching the <ul> and <li> scenario, it will not work very well for a more verbose situation. To really dial this in, the functionality should be wrapped in a function which accepts the target element and delay as an input. The function will then take that element, and set a timeout with the delay for ...sigh, this is too involved I should just code it:

function applyAnimation(element, delay){
 setTimeout(function(){ $(element).addClass('animation'); }, delay);
 var children = document.getElementById(id).children;
 for( var i = 0; i < children.length; i++){
  applyAnimation(children[i],(2+i) * delay);//2+i:0 fails, 1 would be parent, 2 is child
 }
} 
于 2012-06-22T23:28:01.467 回答