CSS Transition #1

김두비·2022년 5월 24일

Transition은 CSS로 애니메이션을 줄 수 있는 속성이다

.box {
    width: 100px;
    height: 100px;
    border: 2px solid #222;
    background: rgba(30, 161, 255, 0.5);
    transition: 1s;
}

.box:hover {
    transform: scale(2);
}

박스 색 변형

.box {
	transition: 1s;
}
.box:hover {
   width: 200px;
   background: tomato;
}

profile
관심과 격려가 필요한 응애 개발자

1개의 댓글

comment-user-thumbnail
2022년 5월 24일

스케일은 참좋아요

답글 달기