animatefx.animation.SlideOutLeft Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AnimateFX Show documentation
Show all versions of AnimateFX Show documentation
A library of ready-to-use animations for JavaFX
package animatefx.animation;
import javafx.animation.KeyFrame;
import javafx.animation.KeyValue;
import javafx.animation.Timeline;
import javafx.scene.Node;
import javafx.util.Duration;
/**
* @author Loïc Sculier aka typhon0
*/
public class SlideOutLeft extends AnimationFX {
/**
* Create new SlideOutLeft
*
* @param node The node to affect
*/
public SlideOutLeft(Node node) {
super(node);
}
@Override
AnimationFX resetNode() {
getNode().setOpacity(1);
getNode().setTranslateX(0);
return this;
}
@Override
void initTimeline() {
setTimeline(new Timeline(
new KeyFrame(Duration.millis(0),
new KeyValue(getNode().translateXProperty(), 0, AnimateFXInterpolator.EASE)
),
new KeyFrame(Duration.millis(1000),
new KeyValue(getNode().translateXProperty(), -getNode().getBoundsInParent().getWidth(), AnimateFXInterpolator.EASE)
)
));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy