A library of ready-to-use animations for JavaFX
Features:
- Custom animations
- Custom interpolators
- Play/Stop animation
- Play an animation after another
- More to come
plugins {
...
id 'java-library'
}
dependencies {
api 'io.github.typhon0:AnimateFX:1.3.0'
}
<dependency>
<groupId>io.github.typhon0</groupId>
<artifactId>AnimateFX</artifactId>
<version>1.3.0</version>
<type>pom</type>
</dependency>
plugins {
...
id 'java-library'
}
repositories {
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
}
dependencies {
api 'io.github.typhon0:AnimateFX:1.3.0-SNAPSHOT'
}
<repositories>
<repository>
<id>snapshots</id>
<name>libs-snapshot</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>io.github.typhon0</groupId>
<artifactId>AnimateFX</artifactId>
<version>1.3.0-SNAPSHOT</version>
</dependency>
</dependencies>
Text text = new Text("AnimateFX");
new Bounce(text).play();
Text text = new Text("AnimateFX");
public void HandleAnimation(ActionEvent actionEvent) {
new Bounce(text).setPlayOnFinished(new BounceIn(text)).play();
}
Please see CONTRIBUTING.md for more information.
Animations are inspired from the awesome project Animate.css