<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
/* transition : 요소에 적용되는 속성값이 변할 때
일정 시간에 걸쳐 일어나도록 하는 것
=> transition-duration : 몇 초동안 재생할지
=> transition-delay : 몇 초 후에 재생할지
=> transition-property : 어떤 속성을 변형할지
*/
.box {
width: 100px;
height: 100px;
background-color: sandybrown;
/* transition-duration: 2s; */
/* transition-delay: 1s; */
transition-property: background-color;
/* 요소에 직접 적용 : 마우스 올릴 때, 내릴 때 모두 적용 */
}
.box:hover {
background-color: seagreen;
border-radius: 50%;
transition-duration: 2s;
/* 이벤트에 적용 : 마우스 내릴 때 적용X */
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>
'Web > HTML_CSS' 카테고리의 다른 글
[CSS] transform (0) | 2023.03.30 |
---|---|
[CSS] 애니메이션 (0) | 2023.03.30 |
[CSS] 포토카드 (0) | 2023.03.30 |
[CSS] flex (0) | 2023.03.29 |
[CSS] float (0) | 2023.03.28 |
댓글