Class RotateInUpLeftTransition

  • All Implemented Interfaces:
    HideableTransition

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

      • RotateInUpLeftTransition

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

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

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