animatefx.animation.RotateInDownLeft 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.transform.Rotate;
import javafx.util.Duration;
/**
* @author Loïc Sculier aka typhon0
*/
public class RotateInDownLeft extends AnimationFX {
/**
* Create new RotateInDownLeft
*
* @param node The node to affect
*/
public RotateInDownLeft(Node node) {
super(node);
}
public RotateInDownLeft() {
}
@Override
AnimationFX resetNode() {
return this;
}
@Override
void initTimeline() {
getNode().setRotationAxis(Rotate.Z_AXIS);
Rotate rotate = new Rotate(0, 0, getNode().getBoundsInLocal().getHeight());
getNode().getTransforms().add(rotate);
setTimeline(new Timeline(
new KeyFrame(Duration.millis(0),
new KeyValue(rotate.angleProperty(), -45, AnimateFXInterpolator.EASE),
new KeyValue(getNode().opacityProperty(), 0, AnimateFXInterpolator.EASE)
),
new KeyFrame(Duration.millis(1000),
new KeyValue(rotate.angleProperty(), 0, AnimateFXInterpolator.EASE),
new KeyValue(getNode().opacityProperty(), 1, AnimateFXInterpolator.EASE)
)
));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy