Answers for "hover scale transition css"

CSS
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
3

hover reinzoomen css

div.image {
	width: 300px;
	height: 200px;
	overflow: hidden;
}
div.image img {
	width: 100%;
	height: auto;
	/* SCALE */
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	/* VERZÖGERUNG */
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
div.image img:hover {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}
Posted by: Guest on September-22-2020
0

on hover zoom card

transform: scale(1.5);
Posted by: Guest on July-16-2020

Browse Popular Code Answers by Language