Class RollInTransition

  • All Implemented Interfaces:
    HideableTransition

    public class RollInTransition
    extends CachedTimelineTransition
    implements HideableTransition
    Animate a roll in left effect on a node

    Port of RollIn from Animate.css by Dan Eden, which was originally authored by Nick Pettit

     @keyframes rollIn {
          0% { opacity: 0; transform: translateX(-100%) rotate(-120deg); }
          100% { opacity: 1; transform: translateX(0px) rotate(0deg); }
     }
     
    Since:
    2.0.0
    • Constructor Detail

      • RollInTransition

        public RollInTransition​(Node node)
        Create new RollInTransition
        Parameters:
        node - The node to affect
      • RollInTransition

        public RollInTransition​(Node node,
                                boolean opacityInterpolated)
        Create new RollInTransition
        Parameters:
        node - The node to affect
        opacityInterpolated - When true opacity is interpolated during the transition
      • RollInTransition

        public RollInTransition​(Node node,
                                boolean opacityInterpolated,
                                Duration duration)
        Create new RollInTransition
        Parameters:
        node - The node to affect
        opacityInterpolated - When true opacity is interpolated during the transition
        duration - The duration of this Transition.
        Since:
        5.0.0