본문 바로가기
CSS

[ CSS ] transition 애니메이션 효과

by Andro07 2020. 4. 5.
728x90
반응형
#m{
  width:100px;
  height:100px;
  background:red;
	position: relative;
  transition:height 5s;
}
#m:hover{
  height:300px;
  background:blue;
}
<div id="m"></div>

* 가로(width)와 세로(height) 중 한쪽방향으로만 transition 적용 가능.

 

[ 참고 ]

https://www.w3schools.com/css/tryit.asp?filename=trycss3_transition_speed

https://www.w3schools.com/css/tryit.asp?filename=trycss3_transition1

728x90
728x90

'CSS' 카테고리의 다른 글

[CSS] background 배경 이미지 관련 속성들 모음  (0) 2021.07.22
[ CSS ] @keyframes 애니메이션 효과  (0) 2020.04.05
[CSS] display: inline-block;  (0) 2019.11.27
[CSS] CSS 단위(unit) : vw  (0) 2019.11.27
[CSS] 글자 간격 조정  (0) 2019.11.27

댓글