我希望旋转(setInterval)在 p:last-child 之后停止,但我做不到。谁能帮帮我吗?主要目的是只旋转一次,然后在 div 中的 p 的最后一个孩子处停止。
$(document).ready(function(){
$('.fadein').delay(4000).fadeIn(1000);
$('#container p:gt(0)').hide();
setInterval(function(){
$('#container p:first-child').fadeOut('slow')
.next('p').slideDown('slow')
.end().appendTo('#container');
},
3000
);
});