Image grow and fade on hover

PHOTO EMBED

Wed Jun 23 2021 06:00:38 GMT+0000 (Coordinated Universal Time)

Saved by @hisam #css #styling #transform #transition

img {
	transition: all ease 500ms;
}

img:hover {
	transform: scale(1.25);
	opacity: 0.7;
}
content_copyCOPY

Make an image pop by having it grow and fade on hover.