▣ 상하좌우로 움직이면서 색상 변경하기
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>상하좌우로 움직이면서 색상 변경하기 </title>
<style>
div {
width: 100px;
height: 100px;
position: relative;
animation: colorbox 5s infinite;
animation-direction: alternate;
}
@keyframes colorbox {
from {
background-color: red;
left: 0px;
top: 0px;
}
25% {
background-color: orange;
left: 300px;
top: 0px;
}
50% {
background-color: yellow;
left: 300px;
top: 300px;
}
75% {
background-color: green;
left: 0px;
top: 300px;
}
to {
background-color: red;
left: 0px;
top: 0px;
}
}
</style>
</head>
<body>
<div></div>
</body>
</html>
See the Pen Untitled by byeolchorong (@byeolchorong) on CodePen.
'웹프로그래밍 CSS3 > CSS 애니메이션' 카테고리의 다른 글
형제 선택자 사용하기 (0) | 2025.03.25 |
---|---|
애니메이션 8 (0) | 2025.03.19 |
애니메이션 6 (0) | 2025.03.18 |
애니메이션 5 (0) | 2025.03.18 |
애니메이션 4 (0) | 2025.03.17 |