public class RollInTransition extends CachedTimelineTransition implements HideableTransition
Port of RollIn from Animate.css by Dan Eden, which was originally authored by Nick Pettit
@keyframes rollIn {
0% { opacity: 0; transform: translateX(-100%) rotate(-120deg); }
100% { opacity: 1; transform: translateX(0px) rotate(0deg); }
}
node, timeline, WEB_EASE| Constructor and Description |
|---|
RollInTransition(javafx.scene.Node node)
Create new RollInTransition
|
RollInTransition(javafx.scene.Node node,
boolean opacityInterpolated)
Create new RollInTransition
|
RollInTransition(javafx.scene.Node node,
boolean opacityInterpolated,
javafx.util.Duration duration)
Create new RollInTransition
|
| 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 RollInTransition(javafx.scene.Node node)
node - The node to affectpublic RollInTransition(javafx.scene.Node node,
boolean opacityInterpolated)
node - The node to affectopacityInterpolated - When true opacity is interpolated during the transitionpublic RollInTransition(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