点击加载更多按钮后,是否可以使用jquery每个循环从索引20开始?我不能正确,因为循环每次都在0开始......
亲切的问候,
斯蒂芬
after:function() {
var images = $("#instafeed").find('a');
var len = images.length;
$.each(images, function(index, image) {
var delay = (index * 75) + 'ms';
$(image).css('-webkit-animation-delay', delay);
$(image).css('-moz-animation-delay', delay);
$(image).css('-ms-animation-delay', delay);
$(image).css('-o-animation-delay', delay);
$(image).css('animation-delay', delay);
$(image).addClass('animated flipInX');
});
$('#loadmore').click(function(e){
e.preventDefault();
index = 20;
feed.next();
});
}
答案 0 :(得分:2)
当然有,只是切片jQuery集合
$.each(images.slice(20), function(index, image) { ...