A small post to show how wave animation can take your emoji to next level!

We all use wave 👋 emoji a lot in web apps!
Next time when you use it, try to add a simple wave animation to it…
@keyframes wave-animation {
0% {
transform: rotate(0deg);
}
10% {
transform: rotate(14deg);
}…