Jump to content
Search Community

Tibor Katelbach

Members
  • Posts

    5
  • Joined

  • Last visited

Posts posted by Tibor Katelbach

  1. Hi Jonothan 

    That's the closest I can get for sure Thanks 

    The source of my real problem is in fact in that grid 

    I was trying to mix 2 libs 

    http://mcpants.github.io/jquery.shapeshift/

    and tweens

    and as I discovered in the grid system when hidding an element there's no repositioning 

    so That was the cause 

    it had nothing to do with the Tweens , So I'm still stuck :(

    on the other hand I learn a bit more thanks to your samples

    Cheers

  2. Hi 

    first of all , I'd like to say thanks for this humungous lib, I love it !! 

     

    I'm building a show hide filter using Tween with scale animations

    on a list of div block 

     

    function filterType(type,color){
    /*$(".people ").hide();
    $("."+type).show();*/
    TweenLite.to(".people ", 1, {scaleY:0});
    TweenLite.to("."+type, 1, {scaleY:1,backgroundColor:color});
    }

    but each hidden block keeps it's space 

    because the block remains 

    what would be the right way to do this ?

    Regards

    Tibor

     

×
×
  • Create New...