Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- react
- java
- Servlet
- frontend
- node.js
- github
- 변수
- 그럼에도 불구하고
- react-router-dom
- 반응형 페이지
- max-width
- 자바
- coding
- node
- 그럼에도불구하고
- 프론트엔드
- 코드업
- media query
- 자바문제풀이
- 코딩테스트
- HTML
- webpack
- TypeScript
- redux
- JavaScript
- CSS
- JS
- cleancode
- @media
- git
Archives
- Today
- Total
그럼에도 불구하고
[Visual Studio Code] 애니메이션 반복하기 본문
애니메이션을 반복하는 코드를 짜 보자
test.html
<!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>keyframes</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.box {width: 200px; height: 200px;
background-color: darkcyan;
border: 1px solid black;
}
@keyframes bgcolor {
20% { background-color: red;}
50% { background-color: blue;}
70% { background-color: orange;}
100% { background-color: pink;}
}
/* 애니메이션이 되는 시작과 끝점의 색 지정
20 ~ 50
50 ~ 70
70 ~ 100
*/
@keyframes tofrom {
from { background-color: orange; left:0px;}
to {background-color: green; left:200px;}
}
.box1{
animation: bgcolor 3s infinite;
/* 이름 동작시간 반복횟수 */
margin-bottom: 50px;
}
.box2{
animation: tofrom 3s infinite;
position: relative;
}
/* 애니메이션이 끝나면 0% 지점으로 돌아간다. */
</style>
</head>
<body>
<h1> bgcolor: red -> blue -> orange -> pink</h1>
<div class="box box1"></div>
<h1>tofrom: orange -> green</h1>
<div class="box box2"></div>
</body>
</html>
결과
bgcolor: red -> blue -> orange -> pink
tofrom: orange -> green
'HTML, CSS > Function implementation' 카테고리의 다른 글
[Visual Studio Code] 가로 / 세로 메뉴바 만들기 (1) | 2022.11.13 |
---|---|
[Visual Studio Code] mask 이용한 로고 만들기 (0) | 2022.11.07 |
[Visual Studio Code] 이미지 위에 글 띄우기 (0) | 2022.11.07 |
[Visual Studio Code] transform-origin (0) | 2022.11.07 |
[Visual Studio Code] 여러가지 transform 이용해보기 (0) | 2022.11.07 |
Comments