我正在尝试编写一个简单的垂直 JavaScript 轮播,它将旋转几个元素。它工作得很好,但我很难弄清楚如何保持元素的数量。正如您在这个 JSFiddle 中看到的那样,http://jsfiddle.net/xznfQ/2/,第一个被“排队”离开并在一轮后重新出现。谁能告诉我我做错了什么?
我猜这两行有问题:
$(e).eq(1).slideUp('slow'); // Slide next element up over the previous
$(e).eq(0).appendTo(a).show('slow'); // Place the current element at the bottom
亲切的问候,
马蒂亚斯。