I am making an analog clock animation (not real time) and I used this: var hand = this.minuteHand, h = 0; setInterval(function(){ hand.rotation = h+=5; }, 1000); I am wondering if I could have an easing dynamically like easein bounce? Also is there a list of properties that can be used. Of course I know a few like opacity, x, y, scaleX, scaleY, etc.... But I feel there are a lot I am missing.
... View more