Animatefx

A library of +70 ready-to-use animations for JavaFX
Alternatives To Animatefx
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Traynotification1,352
4 years ago10mitJava
A tray notification class in JavaFX that allows you to call beautiful looking notifications on desktop computers.
Fxtutorials381
5 months ago2mitJava
A collection of JavaFX tutorials from my YouTube channel
Animatefx365
5 months ago3June 09, 20224apache-2.0Java
A library of +70 ready-to-use animations for JavaFX
Animated115
5 months ago1July 22, 2022mitJava
:ocean: Implicit animations library for JavaFX.
Javafx Tutorial Codes91
a year ago1apache-2.0Java
General program examples that I use for tutorials in 'GenuineCoder' YouTube channel
Jfxanimation35
4 years ago2December 16, 2018mitJava
CSS keyframe animation for JavaFX. Create animations like you would do with CSS.
Fxsortinganimation31
5 years agogpl-3.0Java
JavaFX Sort Animation Demo
Fxexperience220
5 years ago2gpl-3.0Java
Updated version of the original fxexperience/code
Fxrouter20
5 years ago2gpl-3.0Java
A simple JavaFX router to switch between application scenes
Jtoast13
5 years agoJava
JavaFX Toast Notifications à la carte.
Alternatives To Animatefx
Select To Compare


Alternative Project Comparisons
Readme

AnimateFX CI Maven Central javadoc License Join the chat at https://gitter.im/AnimateFX/Lobby

AnimateFX

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

Installation

Gradle (7.x)

plugins {
    ...
    id 'java-library'
}

dependencies {
    api 'io.github.typhon0:AnimateFX:1.2.4'
}

Maven

<dependency>
  <groupId>io.github.typhon0</groupId>
  <artifactId>AnimateFX</artifactId>
  <version>1.2.4</version>
  <type>pom</type>
</dependency>

Snapshot

Gradle (7.x)

plugins {
    ...
    id 'java-library'
}

repositories {
	maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
}

dependencies {
    api 'io.github.typhon0:AnimateFX:1.2.4-SNAPSHOT'
}

Maven

 <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>

Quick start

Basic

Text text = new Text("AnimateFX");
new Bounce(text).play();

Play an animation after another

    Text text = new Text("AnimateFX");
    public void HandleAnimation(ActionEvent actionEvent) {
      new Bounce(text).setPlayOnFinished(new BounceIn(text)).play();
      }

Contributing

Please see CONTRIBUTING.md for more information.

Credits

Animations are inspired from the awesome project Animate.css

Popular Javafx Projects
Popular Animation Projects
Popular Frameworks Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Java
Animation
Play
Awesome
Gradle
Javafx
Animated
Java Library