Jump to content
Search Community

two lines of code too many

jasper 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

Sorry for not making a codepen, but my question is so pathetically simple I think it's unnecessary.

 

The following works.  (Obviously, it's just supposed to flash the two classes on and off in alternation.) But it doesn't work without the first (or last) two lines of code.  Why not?  I see redundancy here, and would like to refactor this properly.

	var foiled_crook = new TimelineMax({repeat:-1});
	foiled_crook
		.set($('.crook'), {autoAlpha:"1"})
		.set($('.crook-blocked'), {autoAlpha:"0"})
		.add("foiled", "+=2")
		.set($('.crook'), {autoAlpha:"0"}, "foiled")
		.set($('.crook-blocked'), {autoAlpha:"1"}, "foiled")
		.add("trying", "+=2")
		.set($('.crook'), {autoAlpha:"1"}, "trying")
		.set($('.crook-blocked'), {autoAlpha:"0"}, "trying")
		;

Thanks, eh.

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...