{"id":20206124,"url":"https://github.com/jaredrummler/androidanimations","last_synced_at":"2025-07-07T15:38:17.136Z","repository":{"id":57725508,"uuid":"59509605","full_name":"jaredrummler/AndroidAnimations","owner":"jaredrummler","description":"A bunch of fun animations for Android.","archived":false,"fork":false,"pushed_at":"2017-05-06T23:40:43.000Z","size":11301,"stargazers_count":74,"open_issues_count":0,"forks_count":13,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-03-24T11:08:36.293Z","etag":null,"topics":["android","android-easing-functions","android-library","animation","easing-functions"],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jaredrummler.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-05-23T18:47:30.000Z","updated_at":"2024-01-30T08:26:40.000Z","dependencies_parsed_at":"2022-09-02T03:31:02.489Z","dependency_job_id":null,"html_url":"https://github.com/jaredrummler/AndroidAnimations","commit_stats":null,"previous_names":["jrummyapps/androidanimations"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaredrummler%2FAndroidAnimations","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaredrummler%2FAndroidAnimations/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaredrummler%2FAndroidAnimations/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaredrummler%2FAndroidAnimations/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jaredrummler","download_url":"https://codeload.github.com/jaredrummler/AndroidAnimations/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248217115,"owners_count":21066633,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","android-easing-functions","android-library","animation","easing-functions"],"created_at":"2024-11-14T05:21:25.340Z","updated_at":"2025-04-10T12:22:04.957Z","avatar_url":"https://github.com/jaredrummler.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AndroidAnimations\n\n[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.jaredrummler/android-animations/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.jaredrummler/android-animations)\n[![License](http://img.shields.io/:license-apache-blue.svg)](LICENSE)\n[![API](https://img.shields.io/badge/API-11%2B-blue.svg?style=flat)](https://android-arsenal.com/api?level=11) \n[![Twitter Follow](https://img.shields.io/twitter/follow/jaredrummler.svg?style=social)](https://twitter.com/jaredrummler)\n\nA bunch of fun animations for Android.\n\nThis project is based on [AndroidViewAnimations](https://github.com/daimajia/AndroidViewAnimations) and [AnimationEasingFunctions](https://github.com/daimajia/AnimationEasingFunctions) by [daimajia](https://github.com/daimajia). It was re-written for simplicity and to remove the dependency on noneoldandroids. #enumsmatter.\n\n# Download\n\nDownload [the latest AAR](https://repo1.maven.org/maven2/com/jaredrummler/android-animations/1.0.0/android-animations-1.0.0.aar) or grab via Gradle:\n\n```groovy\ncompile 'com.jaredrummler:android-animations:1.0.0'\n```\nor Maven:\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003ecom.jaredrummler\u003c/groupId\u003e\n  \u003cartifactId\u003eandroid-animations\u003c/artifactId\u003e\n  \u003cversion\u003e1.0.0\u003c/version\u003e\n  \u003ctype\u003eaar\u003c/type\u003e\n\u003c/dependency\u003e\n```\n\n# Technique\n\n## Usage:\n\n```java\n// play a bounce animation on a view\nTechnique.BOUNCE.playOn(view);\n\n// customize a fade-in animation\nTechnique.FADE_IN.getComposer().duration(2500).delay(1000).playOn(anotherView);\n```\n\n## Demo:\n\n![](art/technique.gif)\n\n## Available Techniques:\n\n**Attention:**\n\n`FLASH, PULSE, RUBBER_BAND, SHAKE, SWING, WOBBLE, BOUNCE, TADA, STAND_UP, WAVE`\n\n**Special:**\n\n`HINGE, ROLL_IN, ROLL_OUT, LANDING, TAKING_OFF, DROP_OUT`\n\n**Bounce:**\n\n`BOUNCE_IN, BOUNCE_IN_DOWN, BOUNCE_IN_LEFT, BOUNCE_IN_RIGHT, BOUNCE_IN_UP`\n\n**Fade:**\n\n`FADE_IN, FADE_IN_UP, FADE_IN_DOWN, FADE_IN_LEFT, FADE_IN_RIGHT, FADE_OUT, FADE_OUT_DOWN, FADE_OUT_LEFT, FADE_OUT_RIGHT, FADE_OUT_UP`\n\n**Flip:**\n\n`FLIP_IN_X, FLIP_OUT_X, FLIP_OUT_Y`\n\n**Rotate:**\n\n`ROTATE, ROTATE_IN, ROTATE_IN_DOWN_LEFT, ROTATE_IN_DOWN_RIGHT, ROTATE_IN_UP_LEFT, ROTATE_IN_UP_RIGHT, ROTATE_OUT, ROTATE_OUT_DOWN_LEFT, ROTATE_OUT_DOWN_RIGHT, ROTATE_OUT_UP_LEFT, ROTATE_OUT_UP_RIGHT`\n\n**Slide:**\n\n`SLIDE_IN_LEFT, SLIDE_IN_RIGHT, SLIDE_IN_UP, SLIDE_IN_DOWN, SLIDE_OUT_LEFT, SLIDE_OUT_RIGHT, SLIDE_OUT_UP, SLIDE_OUT_DOWN`\n\n**Zoom:**\n\n`ZOOM_IN, ZOOM_IN_DOWN, ZOOM_IN_LEFT, ZOOM_IN_RIGHT, ZOOM_IN_UP, ZOOM_OUT, ZOOM_OUT_DOWN, ZOOM_OUT_LEFT, ZOOM_OUT_RIGHT, ZOOM_OUT_UP`\n\n# Skill\n\n## Usage:\n\n```java\nAnimatorSet set = new AnimatorSet();\nset.playTogether(Skill.BOUNCE_EASE_IN_OUT.glide(1200, ObjectAnimator.ofFloat(view, \"translationY\", 0, 100)));\nset.setDuration(1200);\nset.start();\n```\n\n## Demo:\n\n![](art/skill.gif)\n\n## Available Skills:\n\n**Back Easing:**\n\n`BACK_EASE_IN, BACK_EASE_IN_OUT, BACK_EASE_OUT`\n\n**Bounce Easing:**\n\n`BOUNCE_EASE_IN, BOUNCE_EASE_IN_OUT, BOUNCE_EASE_OUT`\n\n**Circ Easing:**\n\n`CIRC_EASE_IN, CIRC_EASE_IN_OUT, CIRC_EASE_OUT`\n\n**Elastic Easing:**\n\n`ELASTIC_EASE_IN, ELASTIC_EASE_IN_OUT, ELASTIC_EASE_OUT`\n\n**Expo Easeing:**\n\n`EXPO_EASE_IN, EXPO_EASE_IN_OUT, EXPO_EASE_OUT`\n\n**Quad Easing:**\n\n`QUAD_EASE_IN, QUAD_EASE_IN_OUT, QUAD_EASE_OUT`\n\n**Quint Easing:**\n\n`QUINT_EASE_IN, QUINT_EASE_IN_OUT, QUINT_EASE_OUT`\n\n**Sine Easing:**\n\n`SINE_EASE_IN, SINE_EASE_IN_OUT, SINE_EASE_OUT`\n\n**Other:**\n\n`Linear`\n\n# Rebound\n\nA wrapper around Facebook's rebound.\n\n## Usage:\n\n```java\nbutton.setOnTouchListener(new Rebound.SpringyTouchListener() {\n\n  @Override public void onClick(View v) {\n    // do stuff on click\n  }\n});\n```\n\n## Demo:\n\n![](art/rebound.gif)\n\n____\n\n# Dependencies:\n\nRebound by Facebook\n```groovy\ncompile 'com.facebook.rebound:rebound:0.3.8'\n```\n\nSupport Annotations\n```groovy\ncompile 'com.android.support:support-annotations:23.4.0'\n```\n\nLicense\n--------\n\n    Copyright (C) 2016. JRummy Apps Inc.\n\n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n    You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaredrummler%2Fandroidanimations","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjaredrummler%2Fandroidanimations","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaredrummler%2Fandroidanimations/lists"}