Answers for "transition scale image bigger css"

CSS
0

css animation scale image

css

.btn {
  transition: transform 250ms, opacity 400ms;
}

.btn:hover {
  transform: scale(1.2);
  opacity: 0;
}
Posted by: Guest on February-22-2021
1

transition scale

.grow { transition: all .2s ease-in-out; }
.grow:hover { transform: scale(1.1); }Create a snippet
Posted by: Guest on March-17-2021

Browse Popular Code Answers by Language