Jump to content
Search Community

netroid

Members
  • Posts

    9
  • Joined

  • Last visited

Posts posted by netroid

  1. "Are you reversing the timeline, but you don't want that first tween to reverse?"

     

    Exactly :)

     

     

    "simply put that tween off on its own or use a label to control how far the timeline plays in reverse"

     

    Ok, dont Know how to do this, can you explain without a Codepen?

  2. Hy

     

    Is der any way to set reverse:false on partial elements in Timeline like this:

     

    var Texte = new TimelineMax();

        Texte
            .to(one, 1.5, {opacity:1}, REVERSE:FALSE ?!?)
            .to(two, 1.5, {opacity:1})
            .to(three, 1.5, {opacity:1})
            .to(text, 1.5, {opacity:1})
            .staggerTo(likes, 1, {opacity:1, yoyo:true, repeat: 1}, 2)
            .to('.like:last()', 1, {opacity:1}, "-=1");

  3. I need to run a Function only over a Viewport of 795px.

     

    If I refresh my Browser under this Limit and then stretches it over, it works fine.

    But if I do it the reverse Way, the Effect not turns off, even though the function itself works wenn i test it with a simple alert.

     

    You can watch it under this Link (im talking about the four Divs in the Screenshot)

     

    http://netroid.ch/Projekte/mostkrug/speis-und-trank

     

     

     

    post-20659-0-59601400-1407409111_thumb.jpg

  4. Hi

     

    I'm new here and also new with Greensock.

     

    I try to tween the height of a div with a variable height value like this:

     

    $( "#ambiente_button" ).click(function() {
        var subnav = document.getElementById("subnav");
        var scrollHeight = $("#subnav").prop("scrollHeight");
        TweenLite.to(subnav, 1.5, {height: scrollHeight});
    });

     

    Is that even possible?

×
×
  • Create New...