$(this).css("left","100px");
function endless(){
$(this).animate({
left:'-=100px',
},{
easing: "linear",
duration: 5000,
complete: function() {
$(this).css('left','100px');
endless();
}
});
};
endless();
這是我試過的,但使用這種方法我不能讓東西移動。 Im'使用jQuery 1.3.2。 有何建議?我如何在jQuery中永遠運行.animate函數?