我很难尝试将下一张图片附加到.thumbwrap
,这是appendTo
$(此)
$('.thumbwrap').each(function (index, el) {
$(this).find('img:gt(0)').hide();
$(this).hover(function () {
timer = setInterval(function () {
$(this).find(':first-child').fadeOut(0)
.next('img')
.fadeIn(0)
.end()
.appendTo(el);
}, 1000);
}, function () {
clearInterval(timer);
},
function () {
});
});