Forum Discussion
MathNotermans-9
5 years agoCommunity Member
Storyline360, Animation and GSAP ( Greensock )
Hi,
Trying to figure something out in SL360 i stumbled upon the ds-bootstrap.min.js file thats added to the lib/scripts folder when publishing a Storyline360 file. In that file are GSAP(Greensock...
MathNotermans-9
2 years agoCommunity Member
PS.. Gsap code formatting is a bit different then TweenLite/TweenMax was.
All code is backwards compatible, but better to adhere to newest approach.TweenLite.to(txtArea, .65 ,{y:pos1, ease: "back.out(3)", delay: 0});
gsap.to(txtArea ,{duration:.65, y:pos1, ease: "back.out(3)", delay: 0});
So main difference is all parameters inside the { }. And the duration has a label ;-)