Button Shrinks Animation
See Code |
Back |
---|
CSS Code Below
.button_name:hover{
-webkit-transform: scale(0.9);
-ms-transform: scale(0.9);
transform: scale(0.9);
animation-duration: 1s;
transition-duration: 1s;
transition-property: 1s;
}