722 B
722 B
title, type, language, tags, author, cover, dateModified
| title | type | language | tags | author | cover | dateModified | |
|---|---|---|---|---|---|---|---|
| Button shrink animation | snippet | css |
|
chalarangelo | clay-pot-horizon | 2021-05-24T15:28:52+03:00 |
Creates a shrink animation on hover.
- Use an appropriate
transitionto animate changes to the element. - Use the
:hoverpseudo-class to change thetransformtoscale(0.8), shrinking the element when the user hovers over it.
<button class="button-shrink">Submit</button>
.button-shrink {
color: #65b5f6;
background-color: transparent;
border: 1px solid #65b5f6;
border-radius: 4px;
padding: 0 16px;
cursor: pointer;
transition: all 0.3s ease-in-out;
}
.button-shrink:hover {
transform: scale(0.8);
}