@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.animated {
animation: bounce 1s infinite;
}146 chars
Similar Tools
Need a specific tool?
Let us know what you need and we build it for you.
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.animated {
animation: bounce 1s infinite;
}Let us know what you need and we build it for you.