Skip to content

Instantly share code, notes, and snippets.

View thexdev's full-sized avatar
🧬
Experiment

M. Akbar Nugroho thexdev

🧬
Experiment
View GitHub Profile
@thexdev
thexdev / pancake-flying-animation.css
Created February 23, 2022 08:50
The flying effect of Pancakeswap bunny on hero section
@keyframes flyingAnimation {
from {
transform: translate(0, 0px);
}
50% {
transform: translate(-5px, -5px);
}
to {
transform: translate(0, 0px);
}