반응형
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
body {
	box-sizing: border-box;
	font-family: Consolas, monospace;
}

img {
	max-width: 100%;
}

.a {
	width: 400px;
	margin: 0px auto;
	overflow: hidden;
}

.a img {
	transition: all 0.2s linear;
}

.a:hover img {
	transform: scale(1.2);
}
</style>

</head>
<body>

	<div class="a">
		<img src="images/pinkbin.png" alt="">
	</div>

</body>
</html>

 

 

커서 올리기 전

 

 

커서 올린 후

 

 

반응형