Class RotateOutDownRightTransition


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

      • RotateOutDownRightTransition

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

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

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