I want use this code
animate({
target: [circle0, circle1, circle2 ],
props: { x: "-1000" },
time: 5,
loop: true,
sequence: true,
ease: "linear"
});
replace under code,but why it auto rewind?
animate({
target: circle0,
props: { x: "-1000" },
time: 5,
loop: true,
ease: "linear"
});
animate({
target: circle1,
props: { x: "-1000" },
time: 5,
loop: true,
ease: "linear"
});
animate({
target: circle2 ,
props: { x: "-1000" },
time: 5,
loop: true,
ease: "linear"
});