Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,5 @@ This project and everyone participating in it is governed by the [Contributor Co
## Contributing

Pull requests are the way to go here. We only have two rules for submitting a pull request: match the naming convention (camelCase, categorised [fades, bounces, etc]) and let us see a demo of submitted animations in a [pen](https://codepen.io). That **last one is important**.

- `shake-fade`: new subtle shake + fade animation (added by @Nafisa-tamboli)
18 changes: 18 additions & 0 deletions animate.css
Original file line number Diff line number Diff line change
Expand Up @@ -4072,3 +4072,21 @@
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}
@keyframes shakeFade {
0% {
transform: translateX(0);
opacity: 1;
}
50% {
transform: translateX(-10px);
opacity: 0.5;
}
100% {
transform: translateX(0);
opacity: 1;
}
}

.shake-fade {
animation-name: shakeFade;
}