Skip to content

Latest commit

 

History

History
72 lines (56 loc) · 1.91 KB

README.md

File metadata and controls

72 lines (56 loc) · 1.91 KB

Build Status License Bintray Join the chat at https://gitter.im/AnimateFX/Lobby HitCount

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

dependencies {
compile 'io.github.typhon0:AnimateFX:1.2.0'
}

Maven

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

Snapshot

Gradle

repositories {
	maven { url 'https://oss.jfrog.org/artifactory/oss-snapshot-local' }
}

dependencies {
    compile('group.id:animatefx:1.2.0-SNAPSHOT')
}

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 awesome project Animate.css