Jump to content
Search Community

Mika

Members
  • Posts

    7
  • Joined

  • Last visited

Mika's Achievements

1

Reputation

  1. Of course you had easy getters!! Thanks!
  2. Hi there, GSAPJS does a great job to bring AS posibilities to JS. However there is one thing that seems to be missing - and i might probably be out of scope but i'll go ahead and ask: Is there a convenient way in GSAPJS to easily get values back from the transform property - scaleX, scaleY, RotationX, skewX etc... ? Or do we need to work with the 2D and 3D matrix? Right now I'm using $("selector").data(key, value) to store (set/get) these variable but I was hoping to find a better way of accessing these values in real time. Anyways, here is an example that works fine using $().data() : http://jsfiddle.net/Dqg2n/3/ Thanks for your work, you make coding so conveninent!!
  3. Mika

    Problem with 3D

    Indeed! Thanks Jack! Lovin it!
  4. Mika

    Problem with 3D

    Hey this CodePen example is really good (so is GSAP)!! I'm getting started and having issues with 3D rotation X and Y scaleX and Y and rotation work well tho and I am using Chrome, FF and Safari. Any idea what I might be doing wrong? TweenMax.to($(".content.selected"), 2, { css:{ rotationX:40, scaleX:1, scaleY:2}}); Thanks!
  5. Is there a way to completely disable these extra params, even at the first request? The files I try to load are dynamic and if the url hiting the server is diferent, a new file is generated even it's just for file audit. Any advice would be appreciatted. Thanks! Oh my bad it was right there LoaderMax.defaultAuditSize = false;
  6. True, unfortunately 'content' is a swif loaded on the fly and I can not recompile it. In some of those loaded swif, there are several sound layers and sometimes at diferent frames. I was hoping for a magic Tweenmax propery I gues Thanks for the help!
  7. Hi there, I am using tweenmax to animate a long timeline based on time vs frame rate: TweenMax.to(content, content.totalFrames/24, {frame:content.totalFrames, ease:Linear.easeNone}); It works like a charm expect one thing: The audio in the timeline is not being played anymore. Did anyone ever ran into that issue before? Any help would be much appreciated. Thank you!
×
×
  • Create New...