animatefx.animation.Swing 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 Swing extends AnimationFX {
/**
* Create new Swing
*
* @param node The node to affect
*/
public Swing(Node node) {
super(node);
}
public Swing() {
}
@Override
AnimationFX resetNode() {
return this;
}
@Override
void initTimeline() {
Rotate rotation = new Rotate();
rotation.setPivotX(getNode().getLayoutBounds().getWidth() / 2.0);
rotation.setPivotY(-getNode().getLayoutBounds().getHeight());
getNode().getTransforms().add(rotation);
setTimeline(new Timeline(
new KeyFrame(Duration.millis(0),
new KeyValue(rotation.angleProperty(), 0, AnimateFXInterpolator.EASE)
),
new KeyFrame(Duration.millis(200),
new KeyValue(rotation.angleProperty(), 15, AnimateFXInterpolator.EASE)
),
new KeyFrame(Duration.millis(400),
new KeyValue(rotation.angleProperty(), -10, AnimateFXInterpolator.EASE)
),
new KeyFrame(Duration.millis(600),
new KeyValue(rotation.angleProperty(), 5, AnimateFXInterpolator.EASE)
),
new KeyFrame(Duration.millis(800),
new KeyValue(rotation.angleProperty(), -5, AnimateFXInterpolator.EASE)
),
new KeyFrame(Duration.millis(1000),
new KeyValue(rotation.angleProperty(), 0, AnimateFXInterpolator.EASE)
)
));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy