-
Ticking Clock
We have all seen the old clock rotation expression where you create a rotation for the second hand and then tie the minute hand to the rotation with an expression so that it moves at 1/60th the speed to simulate minutes and seconds right?
I am trying to create something similar but with a ‘ticking’ clock like a timex watch on the second hand so that it ticks along. tick, tick, tick, tick instead of the smooth rotation. I have worked that out using this expression tied to rotation:
var tick = time*6;
Math.floor(tick)But what I want to happen is now to have the minute hand ( separate layer ) tick over 6 degrees every minute. In other words, it holds for 59 seconds and then jumps 6 degrees in 1 second.
I can’t figure that part out. Any ideas?
Thanks
Jim DiGiovanni
MotionGraphicsAcademy.comvar tick = time*6;
Math.floor(tick)