728x90
1. summary
- 기능 : 원하는 div만 애니메이션으로 커지기
- div로 감싸져 있는 내부 div를 hover 할 시, hover 된 div만 transition 먹히게 한다.
- transition 적용시 해당 div의 크기 변화가 다른 내부 div에 영향을 끼치면 안된다.
- 영향을 받는 이유를 살펴본 결과 각 div간의 거리가 너무 좁을 때 어쩔수 없이 벌어지는거기 때문에 각 div 별 거리를 벌려주면 해결일 된다.
- 출처 : https://www.w3schools.com/howto/howto_css_zoom_hover.asp
2. 적용 이미지
3. 코드
- html & css
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
* {
box-sizing: border-box;
}
.abc {
display: flex;
align-items: center;
justify-content: center;
}
.zoom {
padding: 50px;
background-color: green;
transition: transform 0.2s;
width: 200px;
height: 200px;
margin: 0 auto;
}
.zoom:hover {
transform: scale(1.5);
}
</style>
</head>
<body>
<h1>Zoom on Hover</h1>
<p>Hover over the div element.</p>
<div class="abc">
<div class="zoom"></div>
<div class="zoom"></div>
<div class="zoom"></div>
</div>
</body>
</html>