Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/blundell/quicksand
Automatically manipulates the duration of animations dependent on view count. Quicksand .. the more you struggle.
https://github.com/blundell/quicksand
android animation-duration enchanting user-experience
Last synced: 2 days ago
JSON representation
Automatically manipulates the duration of animations dependent on view count. Quicksand .. the more you struggle.
- Host: GitHub
- URL: https://github.com/blundell/quicksand
- Owner: blundell
- License: other
- Created: 2015-05-02T14:58:17.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-10-18T12:30:08.000Z (about 1 year ago)
- Last Synced: 2024-10-30T22:09:26.826Z (17 days ago)
- Topics: android, animation-duration, enchanting, user-experience
- Language: Java
- Homepage:
- Size: 8.46 MB
- Stars: 384
- Watchers: 11
- Forks: 42
- Open Issues: 2
-
Metadata Files:
- Readme: README.MD
- License: LICENSE.txt
Awesome Lists containing this project
README
QuickSand
=========When showing a really enchanting explanatory animation to your users, but you know that after a while it'll get tedious and would stop users wanting to use your app. QuickSand is here to solve that problem.
Automatically manipulates the duration of animations depending on how many times the user has viewed them.
Simple Use
----------This is the setup needed to define how you change the animation duration between views:
```java
Map modifiers = new HashMap<>();
modifiers.put("MyAnimationSetKey", TwoStepViscosityInterpolator.defaultInstance());
Quicksand.create(this, modifiers);
```This is "trapping" an animation, meaning when this view is animated `Quicksand` will determine how many times it has been viewed and vary the animation duration according to the `ViscosityInterpolator` set above:
```java
View myView = findViewById(R.id.my_view);
QuickSand.trap("MyAnimationSetKey", myView);
myView.animate().alpha();
```Also works for multiple view animation:
```java
View myView = findViewById(R.id.my_view);
View myOtherView = findViewById(R.id.my_view);
View myThirdView = findViewById(R.id.my_view);
QuickSand.trap("MyAnimationSetKey", myView, myOtherView, myThirdView);
myView.animate().alpha();
myOtherView.animate().alpha();
myThirdView.animate().alpha();
```Some viscosities already defined [see the code here](https://github.com/blundell/QuickSand/tree/master/core/src/main/java/com/blundell/quicksand/viscosity):
- [AllOrNothing](https://github.com/blundell/QuickSand/blob/master/core/src/main/java/com/blundell/quicksand/viscosity/AllOrNothingViscosityInterpolator.java) - you can run your animation for X seconds X times and then 0 seconds after that
- [LinearChange](https://github.com/blundell/QuickSand/blob/master/core/src/main/java/com/blundell/quicksand/viscosity/LinearChangeViscosityInterpolator.java) - speed up the animation each time it is viewed until X views
- [TwoStep](https://github.com/blundell/QuickSand/blob/master/core/src/main/java/com/blundell/quicksand/viscosity/TwoStepViscosityInterpolator.java) - run animation at X speed for X times then it will run at half XSee the [demo project](https://github.com/blundell/QuickSand/tree/master/demo) for more examples.
Adding to your project
--------```groovy
dependencies {
compile 'com.blundell:quicksand:1.0.2'
}
```--------
See it to believe it
--------|15 second gif below|
|---|
Notice how the animation duration decreases each time it is ran until eventually it does not animate (only touch feedback), `Quicksand` integration is done with 2 lines of code.|
|![demo](demo/demo_z1c.gif)|Download
--------[Release Notes](https://github.com/blundell/QuickSand/blob/master/releases/RELEASE-NOTES.MD)
Get [the latest version here](https://github.com/blundell/QuickSand/raw/master/releases/)License
-------[Apache 2](LICENSE.txt)