$(document).ready(function(){
setInterval(function(){
$('#slide > ul').animate({
left:'-1200px'
},1000,function(){
$(this).append($(this).children().eq(0));
$(this).css({
left:'0'
})
});
},2000);
});
여기서 animate의 콜백함수 자리에 css({})가 들어간거라, 보통 이런 건 설정으로 쓰여짐.
원래는 보통 jquery라도 css({}) 이거는 이동하거나 변경해주는건데, animate 콜백으로 들어가서 다른 듯.