An open API service indexing awesome lists of open source software.

https://github.com/ppmpreetham/gsap-animations

Cool GSAP animations that I use
https://github.com/ppmpreetham/gsap-animations

gsap gsap-plugin gsap3

Last synced: 2 months ago
JSON representation

Cool GSAP animations that I use

Awesome Lists containing this project

README

        

# GSAP Animations
Cool GSAP animations that I use

## Center Fall down
Makes the center element fall down first, then the rest of the elements fall down in a staggered manner

Works with a Stagger of elements

![Center Fall down](src/videos/center_fall_down.gif)

### Code
```javascript
gsap.to(".stagger-box", {
y:25,
duration:1,
stagger:0.5,
ease:"bounce.out",
stagger: {
ease: "back.out",
amount: 1,
from: "center",
}
});

```
## Center Float
Makes the center element float up first, then the rest of the elements float too.

Works with a Stagger of elements
Could be implemented when selection

![Center Fall down](src/videos/center_float.gif)

### Code
```javascript
gsap.to(".stagger-box", {
y:-25,
duration:1,
stagger:0.5,
ease:"back.out",
repeat: -1,
yoyo: true,
stagger: {
ease: "back.out",
amount: 1,
from: "center",
}
});
```