Class BounceInRightTransition

  • All Implemented Interfaces:
    HideableTransition

    public class BounceInRightTransition
    extends CachedTimelineTransition
    implements HideableTransition
    Animate a bounce in right big effect on a node Port of BounceInRight from Animate.css by Dan Eden
     @keyframes bounceInRight {
            0% {
                    opacity: 0;
                    -webkit-transform: translateX(2000px);
            }
            60% {
                    opacity: 1;
                    -webkit-transform: translateX(-30px);
            }
            80% {
                    -webkit-transform: translateX(10px);
            }
            100% {
                    -webkit-transform: translateX(0);
            }
     }
     
    Since:
    2.0.0
    • Constructor Detail

      • BounceInRightTransition

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

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

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