我目前有这段代码
setInterval(function() {
var $a = $('#slide .active');
var $n = $a.next().length ? $a.next() : $('#slide img:first');
$n.addClass('active');
$a.removeClass('active');
}, 1000);
这将逐一显示所有图像。我想从左到右显示图像,但我不知道怎么做?
What should I change here?