Jump to content
Search Community

gaap + hype tumult

cartimundi test
Moderator Tag

Warning: Please note

This thread was started before GSAP 3 was released. Some information, especially the syntax, may be out of date for GSAP 3. Please see the GSAP 3 migration guide and release notes for more information about how to update the code to GSAP 3's syntax. 

Recommended Posts

Hello, again..

 

a year or 2 ago i started with gs in adobe edge of animate

but after the stopped the software is was out of greensock

 

I have found (i think) a better program, called hype

i can activated gs in this program, but all the animation is playing at the same time...does anybody know how i can solve this?

 

    
    TweenMax.from(".disc2", .2, {left:"200px"}, 0)
    TweenMax.from(".disc3", .3, {right:"150px"}, 2)

 

 

 

Schermafdruk 2019-03-03 00.03.32.jpg

Link to comment
Share on other sites

Try this:

 

TweenMax.from(".disc2", .2, {left:"200px"})
TweenMax.from(".disc3", .3, {right:"150px", delay: 2})

 

Or use a timeline:

 

var tl = new TimelineMax();

tl.from(".disc2", .2, {left:"200px"})
.from(".disc3", .3, {right:"150px"}, 2)

 

Also note that with timelines, you can actually use relative values to more easily animate things sequentially: https://greensock.com/position-parameter

 

So instead of the 2 at the end, you could have "+=1.8".

  • Like 1
Link to comment
Share on other sites

9 hours ago, cartimundi said:

From the hype forum i get a question that greensock is a paid service and that i can’t use iT without paying of something??

 

Nah, that's a common misperception. I'd estimate that over 99% of our users never pay us a dime. There are only two reasons you'd need to pay for anything: 

  1. If you need the special commercial license that comes with Business Green memberships. This is only necessary if you're using GSAP in a site/product/game/app for which you're charging MULTIPLE customers a fee. See https://greensock.com/licensing for details. 
  2. If you need one of the members-only plugins like MorphSVGPlugin or SplitText. Those are "thank you" gifts we give to those who support us. But none of those plugins are essential - the core animation tools are all public/free. See https://greensock.com/club for a list of the plugins and benefits that are for members-only. TweenMax, the thing you were using in your example, is available to everyone (it's not a members-only benefit). It's our most popular tool by far. 

Most importantly, please read https://greensock.com/why-license to understand why our licensing model is a GOOD thing for our users and why we believe in it. 

 

Let us know if you have any other questions or concerns. 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...