Button Animations
Bucket Buttons
Get Approved
GET APPROVED
LEARN MOREValue Your Trade
VALUE YOUR TRADE
CLICK HEREService Center
SERVICE CENTER
LEARN MOREOther Animations
/*-- Animated Let's Go Camping Badge --*/
.search-badge { position:absolute; animation: stretch; animation-duration: 2.5s; animation-timing-function: ease-out; animation-delay: 0; animation-direction: alternate; animation-iteration-count: infinite; animation-fill-mode: none; animation-play-state: running; }
@keyframes stretch {
0% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}