HideableTransitionpublic class BounceInRightTransition extends CachedTimelineTransition implements HideableTransition
@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);
}
}
node, timeline, WEB_EASE| Constructor | Description |
|---|---|
BounceInRightTransition(javafx.scene.Node node) |
Create new BounceInRightBigTransition
|
BounceInRightTransition(javafx.scene.Node node,
boolean opacityInterpolated) |
Create new BounceInRightBigTransition
|
| Modifier and Type | Method | Description |
|---|---|---|
protected void |
starting() |
Called when the animation is starting
|
autoReverseProperty, currentRateProperty, currentTimeProperty, cycleCountProperty, cycleDurationProperty, delayProperty, getCuePoints, getCurrentRate, getCurrentTime, getCycleCount, getCycleDuration, getDelay, getOnFinished, getRate, getStatus, getTargetFramerate, getTotalDuration, isAutoReverse, jumpTo, jumpTo, onFinishedProperty, pause, play, playFrom, playFrom, playFromStart, rateProperty, setAutoReverse, setCycleCount, setCycleDuration, setDelay, setOnFinished, setRate, setStatus, statusProperty, stop, totalDurationPropertyhideNode, interpolate, isOpacityInterpolated, stoppingpublic BounceInRightTransition(javafx.scene.Node node)
node - The node to affectpublic BounceInRightTransition(javafx.scene.Node node,
boolean opacityInterpolated)
node - The node to affectopacityInterpolated - When true opacity is interpolated during the transitionprotected void starting()
CachedTimelineTransitionstarting in class CachedTimelineTransition