这是 divslider 示例的链接:http: //jsfiddle.net/jtbowden/ykbgT/light/
但是在这个例子中,div是从右向左移动的
但我现在想将 div 从左移到右.. 这个网站里面已经有一个编辑器。所以请帮我反向移动div。因为在我的代码上我想去两边
$('.box').click(function() {
$('.box').each(function() {
if ($(this).offset().left < 0) {
$(this).css("left", "150%");
} else if ($(this).offset().left > $('#container').width()) {
$(this).animate({
left: '50%',
}, 500 );
} else {
$(this).animate({
left: '-150%',
}, 500 );
}
});
});