我试图创建一些移动的div,实际上重制了一个,这样div会无休止地来回移动,这里是脚本:
function animate(px) {
$('.download').animate({
'marginLeft' : "-10px"
});
}
感谢您的帮助! ;)
答案 0 :(得分:2)
在执行此操作之前,请不要忘记将position: relative
添加到#download
元素:
var func = function() {
$(".download").animate({"left": "-40px"}, 1000, function() {
$(this).animate({"left": "40px"}, 1000)
})
setTimeout(func, 2000);
}
//Or remove setTimeout and use the following line instead:
//func(); setInterval(func, 2000);