참고 : css 애니메이션 사이트 : https://animista.net/
Animista - CSS Animations on Demand
Animista is a CSS animation library and a place where you can play with a collection of ready-made CSS animations and download only those you will use.
animista.net
@keyframes 은 CSS문법 중 하나로 애니메이션이 만들어지는 부분
키프레임 애니메이션을 정의한 후 요소에 애니를 적용할라면 "aniamtion" 속성을 이용해 키프레임을 연결해야한다
From to 형
@keyframes 애니메이션 이름{
form{
Transfrom : … …
}
to {
}
}
스텝형
@keyframes 애니메이션 이름{
0% {
}
50% {
}
100% {
}
}
사용법
img {
animation : 애니메이션이름 재생시간 옵션 (infinite : 무한)
}
728x90
반응형
'프로그래밍 공부 > html,css' 카테고리의 다른 글
[Css] - 미디어쿼리란? (0) | 2021.11.01 |
---|---|
[Css] - Transformation , 트랜스폼 (0) | 2021.10.31 |
[Css] - transition (트랜지션) 정리 (0) | 2021.10.31 |
[Html,Css] - 의사 요소, 의사 클래스, 선택자 -- 추후 수정 (0) | 2021.10.31 |
[Css] - position (0) | 2021.10.31 |