Class RotateOutDownLeftTransition


  • public class RotateOutDownLeftTransition
    extends CachedTimelineTransition
    Animate a rotate out down left effect on a node Port of RotateOutDownLeft from Animate.css by Dan Eden
     @keyframes rotateOutDownLeft {
            0% {
                    transform-origin: left bottom;
                    transform: rotate(0);
                    opacity: 1;
            }
            100% {
                    transform-origin: left bottom;
                    transform: rotate(90deg);
                    opacity: 0;
            }
     }
     
    Since:
    2.0.0
    • Constructor Detail

      • RotateOutDownLeftTransition

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

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

        public RotateOutDownLeftTransition​(Node node,
                                           boolean opacityInterpolated,
                                           Duration duration)
        Create new RotateOutDownLeftTransition
        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