animatefx.animation.FlipOutY 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.scene.ParallelCamera;
import javafx.scene.PerspectiveCamera;
import javafx.util.Duration;
import static javafx.scene.transform.Rotate.Y_AXIS;
/**
* @author Loïc Sculier aka typhon0
*/
public class FlipOutY extends AnimationFX {
/**
* Create new FlipOutY
*
* @param node The node to affect
*/
public FlipOutY(Node node) {
super(node);
}
@Override
AnimationFX resetNode() {
getNode().setOpacity(1);
getNode().setRotate(0);
return this;
}
@Override
void initTimeline() {
getNode().getScene().setCamera(new PerspectiveCamera());
getNode().setRotationAxis(Y_AXIS);
setTimeline(new Timeline(
new KeyFrame(Duration.millis(0),
new KeyValue(getNode().opacityProperty(), 1, AnimateFXInterpolator.EASE)
),
new KeyFrame(Duration.millis(225),
new KeyValue(getNode().rotateProperty(), 15, AnimateFXInterpolator.EASE)
),
new KeyFrame(Duration.millis(750),
new KeyValue(getNode().opacityProperty(), 0, AnimateFXInterpolator.EASE),
new KeyValue(getNode().rotateProperty(), -90, AnimateFXInterpolator.EASE)
)
));
getTimeline().setOnFinished(event -> getNode().getScene().setCamera(new ParallelCamera()));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy