Created
February 23, 2022 08:50
-
-
Save thexdev/9754e71a137d274268aeeed8496cef29 to your computer and use it in GitHub Desktop.
The flying effect of Pancakeswap bunny on hero section
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@keyframes flyingAnimation { | |
from { | |
transform: translate(0, 0px); | |
} | |
50% { | |
transform: translate(-5px, -5px); | |
} | |
to { | |
transform: translate(0, 0px); | |
} | |
} | |
#concrate { | |
width: 100px; | |
height: 100px; | |
background: red; | |
position: relative; | |
animation: flyingAnimation 3.5s ease-in-out infinite; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Made this public