Class RotateInUpRightTransition

  • All Implemented Interfaces:
    HideableTransition

    public class RotateInUpRightTransition
    extends CachedTimelineTransition
    implements HideableTransition
    Animate a rotate in up right effect on a node Port of RotateInUpRight from Animate.css by Dan Eden
     @keyframes rotateInUpRight {
            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

      • RotateInUpRightTransition

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

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

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