3s infinite alternate slidein
링크로 다운로드가 안되시는 분은 아래 파일을 받아주세요.
@keyframes
에 대하여 가벼운 예제를 보고 가도록 하겠습니다.
<!DOCTYPE html>
<html lang="ko">
<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>animation</title>
<style>
/* 키프레임 이름 == 애니메이션 이름 */
@keyframes hojun {
0% {
background-color: rosybrown;
color: white;
transform: translate(0, 0);
}
100% {
color: red;
background-color: royalblue;
transform: translate(300px, 0) rotate(360deg) scale(2);
}
}
div {
margin: 200px;
width: 100px;
height: 100px;
background-color: red;
animation: hojun 10s;
}
</style>
</head>
<body>
<div>hello world</div>
</body>
</html>