jQuery :
$("#image").rotate({
    angle: 0,
    center: ["50%", "100%"],
    duration: 5000,
    animateTo: 15
});
我想为此设置延迟。
jQuery :
$("#image").rotate({
    angle: 0,
    center: ["50%", "100%"],
    duration: 5000,
    animateTo: 15
});
我想为此设置延迟。
根据您的评论,听起来您需要使用回调,rotate()动画结束时会调用该回调。根据文档,您可以传递这样的callback参数:
$("#image").rotate({
    angle: 0,
    center: ["50%", "100%"],
    duration: 5000,
    animateTo: 15,
    callback: function() {
        $("#image2").rotate({
            angle: 0,
            center: ["50%", "100%"],
            duration: 5000,
            animateTo: 15
        });
    }
});
您可以将另一个回调传递给 #image2 用于 #image3 等。