我需要同时在两个方向上为此div设置动画,但它只会动画到第一个属性。
function plan11() {
$('.plan1').animate({ left : windowWidth, top: '10px;'},60000, "linear", function() {
$('.plan1').delay(1000).animate({ left: "-83" },30000,"linear"); medium() ; }); }
plan11();
我怎样才能做到这一点?
答案 0 :(得分:0)
你应该删除;在'顶部'属性:
function plan11() {
$('.plan1').animate({ left : windowWidth, top: '10px'}, 60000, "linear",
function() {
$('.plan1').delay(1000).animate({ left: "-83" }, 30000, "linear");
medium();
});
}
plan11();