First, great job on the progress you have made with the accordion.   To make your cloud animation repeat, you can use TimelineMax which supports repeats: var cloudAnimation = new TimelineMax({repeat:-1})       cloudAnimation.to(".panel0 path#cloud1", 1, {x:100}, 0)       .to(".panel0 path#cloud2", 1, {x:-50}, 0)       .to(".panel0 path#cloud1", 1, {x:0})       .to(".panel0 path#cloud2", 1, {x:50}, '-=10');   It would take too much time to try to figure out how to work with
    • Like
    2