css animation scale image

Solutions on MaxInterview for css animation scale image by the best coders in the world

showing results for - "css animation scale image"
Sofia
07 Jun 2016
1css
2
3.btn {
4  transition: transform 250ms, opacity 400ms;
5}
6
7.btn:hover {
8  transform: scale(1.2);
9  opacity: 0;
10}
11