Jump to content
Search Community

Animation starts only once

Freedzz 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

Hey folks,

 

i'm complete new at Javascript and Greensock. I wrote a code, that rotates a div. It should rotate everytime when i click on it. But it rotates only once and never again. Can you tell me, what i'm doing wrong? Is there a better way with timelines, or any better method?

 

var click;
window.onload = function(){
var box2 = document.getElementById("header");


box2.click = function(){
if(click != 0){
TweenLite.set(wrapper, {perspective:200});
TweenMax.to(box2, 1, {rotationY:180, transformOrigin:"50% 600"});
click = 0;
}else if (click == 0){
TweenLite.set(wrapper, {perspective:200});
TweenMax.to(box2, 1, {rotationY:180, transformOrigin:"600"});
click = 1;
}



}

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