웹프로그래밍 CSS3/CSS 애니메이션
애니메이션 7
별초롱언니
2025. 3. 19. 17:15
▣ 상하좌우로 움직이면서 색상 변경하기
<!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>