Jquery: How to do both successive and simultaneously animations
问题 I want a screen-element (whose ID is #sign1 ) to move in a sinusoidal wave. For this I need successive UP-and-DOWN 'wobbles', all while it is simultaneously moving RIGHT. But I don't really understand queues , which are so necessary for successive animations. I can do 2 simultaneous animations, . . . e.g. moving UP and RIGHT at the same time, by putting queue: false on both, and I can do 2 successive animations, . . . e.g. moving UP, then later DOWN, by chaining .delay(1000).queue(function(n)