Skip to content
This repository was archived by the owner on Apr 27, 2021. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

A helper library for [FLIP animations](https://aerotwist.com/blog/flip-your-animations).

[![FLIP Demos](https://cloud.githubusercontent.com/assets/617438/12309072/8be03324-ba40-11e5-8f6c-0e5c04f87336.png)](http://googlechrome.github.io/flipjs/)
[![FLIP Demos](https://cloud.githubusercontent.com/assets/617438/12309072/8be03324-ba40-11e5-8f6c-0e5c04f87336.png)](http://googlearchive.github.io/flipjs/)

FLIP is an approach to animations that remaps animating expensive properties, like width, height, left and top to significantly cheaper changes using transforms. It does this by taking two snapshots, one of the element's **First** position (F), another of its **Last** position (L). It then uses a transform to **Invert** (I) the element's changes, such that the element appears to still be in the First position. Lastly it **Plays** (P) the animation forward by removing the transformations applied in the Invert step.

Expand Down Expand Up @@ -63,8 +63,8 @@ let flip = new FLIP({

## Documentation & Demos

* [Demos](https://googlechrome.github.io/flipjs/) - There are more to make :)
* [API docs](https://googlechrome.github.io/flipjs/docs/FLIP.html).
* [Demos](https://googlearchive.github.io/flipjs/) - There are more to make :)
* [API docs](https://googlearchive.github.io/flipjs/docs/FLIP.html).

## New to FLIP?

Expand Down