Anyone know how to add css animation code on button

is it possible? …

can you share the example/sample…

like this i have this code for grow size of button

button {
color: #1D9AF2;
background-color: #292D3E;
border: 1px solid #1D9AF2;
border-radius: 4px;
padding: 0 15px;
cursor: pointer;
height: 32px;
font-size: 14px;
transition: all 0.2s ease-in-out;
}
button:hover {
transform: scale(1.1);
}

4 Likes