Jump to content
Search Community

Freedzz

Members
  • Posts

    2
  • Joined

  • Last visited

Freedzz's Achievements

0

Reputation

  1. Hi, thank you very much. It works. Freedzz
  2. 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; } } }
×
×
  • Create New...