.popup
. Как сделать их видимыми по очереди?.tets
.popup
img(src='/img/tets/01.png')
.popup
img(src='/img/tets/02.png')
$(".tets .popup").each(function() {
$(this).fadeIn(1000).delay(3000).fadeOut(1000);
})
$(".tets .popup").each(function(i, el) {
$(el).fadeIn(1000).delay(3000 * i).fadeOut(1000);
});
$(".tets .popup").each(function(i, el) {
$(el).delay(3000 * i).fadeIn(1000);
});