Jump to content
Search Community

anusky

Members
  • Posts

    8
  • Joined

  • Last visited

Community Answers

  1. anusky's post in on click show and hide tooltip was marked as the answer   
    Thanks for the quick answer!
    Actually your tip was not working for me, probably because I am just starting with greensock and I could understand properly whats going on...Although for me your explanation was really clear!
    However, I found a solution for my click apper/dissappear which is working!!!
     
    Anyway Im really interestend in find other posibilities!!!!!!!
     
    Guys your are making a great job!!!!!!!
    var info = $("#icon"); function appear() { TweenLite.to("#info", moveTime, {autoAlpha:1}); info.one('click', disappear); } function disappear() { TweenLite.to("#info", moveTime, {autoAlpha:0}); info.one('click', appear); } info.one('click', appear);
×
×
  • Create New...