public class BounceInLeftTransition extends CachedTimelineTransition implements HideableTransition
@keyframes bounceInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
}
60% {
opacity: 1;
-webkit-transform: translateX(30px);
}
80% {
-webkit-transform: translateX(-10px);
}
100% {
-webkit-transform: translateX(0);
}
}
node, timeline, WEB_EASE| Constructor and Description |
|---|
BounceInLeftTransition(javafx.scene.Node node)
Create new BounceInLeftTransition
|
BounceInLeftTransition(javafx.scene.Node node,
boolean opacityInterpolated)
Create new BounceInLeftTransition
|
BounceInLeftTransition(javafx.scene.Node node,
boolean opacityInterpolated,
javafx.util.Duration duration)
Create new BounceInLeftTransition
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
starting()
Called when the animation is starting
|
hideNode, interpolate, isOpacityInterpolated, pause, stoppinggetCachedInterpolator, getInterpolator, getParentTargetNode, interpolatorProperty, setInterpolatorautoReverseProperty, currentRateProperty, currentTimeProperty, cycleCountProperty, cycleDurationProperty, delayProperty, getCuePoints, getCurrentRate, getCurrentTime, getCycleCount, getCycleDuration, getDelay, getOnFinished, getRate, getStatus, getTargetFramerate, getTotalDuration, isAutoReverse, jumpTo, jumpTo, onFinishedProperty, play, playFrom, playFrom, playFromStart, rateProperty, setAutoReverse, setCycleCount, setCycleDuration, setDelay, setOnFinished, setRate, setStatus, statusProperty, stop, totalDurationPropertypublic BounceInLeftTransition(javafx.scene.Node node)
node - The node to affectpublic BounceInLeftTransition(javafx.scene.Node node,
boolean opacityInterpolated)
node - The node to affectopacityInterpolated - When true opacity is interpolated during the transitionpublic BounceInLeftTransition(javafx.scene.Node node,
boolean opacityInterpolated,
javafx.util.Duration duration)
node - The node to affectopacityInterpolated - When true opacity is interpolated during the transitionduration - The duration of this Transition.protected void starting()
CachedTimelineTransitionstarting in class CachedTimelineTransition