✅ Animate.css 사용법
✅ 코드펜 사용법
animate__animated, animate__bounce, animate__faster
은 animate.css에서 다 정의되어있다.👉 html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div class="animate__animated animate__shakeX animate__slow animate__delay-2s color-red">Example</div>
</body>
</html>
👉 css
.color-red {
color: red;
}
.animate__animated {
margin-top: 200px;
margin-left: 200px;
}
오늘은 css 애니메이션 라이브러리 적용해서 사용하는 법을 배웠다. 많은 사람들이 만들어 놓은 css애니메이션 코드를 복사, 붙여넣기로 적용할 수 있다니 정말 좋은 세상에서 프로그래밍을 할 수 있음을 느낀다👏 그래도 라이브러리를 사용한다고 해도 나의 작업물에 맞춰서 커스텀하는 건 필수인 것 같다. 오늘 수업은 매우 짤막해서 어려웠던 점은 없었다. 그래서 어제 학습한 css애니메이션을 복습하고 animate.css로 여러 예시 실습을 해야겠다!🌟