Class RotateInDownRightTransition

  • All Implemented Interfaces:
    HideableTransition

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

      • RotateInDownRightTransition

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

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

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