到目前为止,代码在一系列<li>
项目中逐渐消失。The next_arrow
将最新的 div 附加到列表的底部,给人一种幻灯片放映前面的错觉。
但是,当我尝试使用 镜像代码时left_arrow
,它会中断并完全淡出li
。
$('li:first-child').siblings().hide();
$('.right_arrow').click(function () {
$(this)
.parent('.container')
.find('li:first-child')
.fadeOut(200, function () {
$(this).next().fadeIn(200);
$(this).appendTo('ul');
});
});
$('.left_arrow').click(function () {
$(this)
.parent('.container')
.find('li:first-child')
.fadeOut(200, function () {
$(this).prev().fadeIn(200);
$(this).appendTo('ul');
});
});