Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试实现一个 jQuery 幻灯片,它可以淡入淡出每个图像,并且有控件可以滚动到下一个或上一个图像。我现在正在完成本教程,我想知道如何将每个图像附加到幻灯片的末尾,所以当幻灯片到达末尾时,它不会一直滚动回第一个图像,但它只是不断地经过他们。
提前致谢!
肖恩
知道了。
$('#previous').click(function() { $('#slideshow img:first').fadeOut(1000).prev().fadeIn(1000).end().appendTo('#slideshow'); }); $('#next').click(function() { $('#slideshow img:first').fadeOut(1000).next().fadeIn(1000).end().appendTo('#slideshow'); });