I need to use TweenLite due to space limitations in the project (yay!)
I suspect the TweenLite isn't working because of the Timeline... not sute really
Any suggestions on how to yoyo and repeat with TweenLite?
//working TweenMax version
function flapWingsMax() {
flapTl = new TimelineLite();
var wl = TweenMax.to("#wing_left", 0.1, {
scaleY: 0.5,
repeat: -1,
skewX: 20,
transformOrigin:"86px 104px",
yoyo: true,
onComplete:reverseTween,
onReverseComplete:restartTween,
ease: Sine.easeInOut
})
var wr = TweenMax.to("#wing_right", 0.1, {
scaleY: 0.5,