Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Traynotification | 1,352 | 4 years ago | 10 | mit | Java | |||||
A tray notification class in JavaFX that allows you to call beautiful looking notifications on desktop computers. | ||||||||||
Fxtutorials | 381 | 5 months ago | 2 | mit | Java | |||||
A collection of JavaFX tutorials from my YouTube channel | ||||||||||
Animatefx | 365 | 5 months ago | 3 | June 09, 2022 | 4 | apache-2.0 | Java | |||
A library of +70 ready-to-use animations for JavaFX | ||||||||||
Animated | 115 | 5 months ago | 1 | July 22, 2022 | mit | Java | ||||
:ocean: Implicit animations library for JavaFX. | ||||||||||
Javafx Tutorial Codes | 91 | a year ago | 1 | apache-2.0 | Java | |||||
General program examples that I use for tutorials in 'GenuineCoder' YouTube channel | ||||||||||
Jfxanimation | 35 | 4 years ago | 2 | December 16, 2018 | mit | Java | ||||
CSS keyframe animation for JavaFX. Create animations like you would do with CSS. | ||||||||||
Fxsortinganimation | 31 | 5 years ago | gpl-3.0 | Java | ||||||
JavaFX Sort Animation Demo | ||||||||||
Fxexperience2 | 20 | 5 years ago | 2 | gpl-3.0 | Java | |||||
Updated version of the original fxexperience/code | ||||||||||
Fxrouter | 20 | 5 years ago | 2 | gpl-3.0 | Java | |||||
A simple JavaFX router to switch between application scenes | ||||||||||
Jtoast | 13 | 5 years ago | Java | |||||||
JavaFX Toast Notifications à la carte. |
A library of ready-to-use animations for JavaFX
Features:
plugins {
...
id 'java-library'
}
dependencies {
api 'io.github.typhon0:AnimateFX:1.2.4'
}
<dependency>
<groupId>io.github.typhon0</groupId>
<artifactId>AnimateFX</artifactId>
<version>1.2.4</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.2.4-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.2.4-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