我想用这个简单的 jquery 幻灯片让一个图像暂停 9 秒,另一个暂停 3 秒
<script>
$(function(){
$('.fadein2 img:gt(0)').hide();
setInterval(function(){$('.fadein2 :first-child').fadeOut(2500).next('img').fadeIn(2500).end().appendTo('.fadein2');}, 9000);
});
</script>
html
<div class="fadein" >
<img src="1.jpg" >
<img src="2.jpg">
</div>