Hi there,
I am trying to animate a car moving along a road and need the wheels rotation and the chassis bouncing to stop as the road runs out.
It's not looking too bad except that i can't get the chassis and tyre vars to finish after the rest of the timeline finishes.
The code below simply pauses everything from the start.
Sorry if the answer is obvious...
<script type="text/javascript">
var chassis = new TweenMax.to ("#chassis", .1, {top:1, yoyo:true, repeat:-1})
var tyre = new TweenMax.to ("#tyre", .5, {rotation:360, transformOrigin:"50% 50%", repeat:-1, ease:Linear.easeNone})
var tl = new TimelineMax();
tl
.from("#suv", 8, {left:20, ease:Elastic.easeInOut}, "start")
.from("#shop", 6, {left:1456}, "start")
.to("#road", 6, {left:-1456}, "start")
chassis.pause();
tyre.pause();
</script>
Thanks in advance,
Phil