본문 바로가기
프로그래밍 공부/html,css

[Css] - @keyframes , 애니메이션 (animation) 속성

by 미니미니찍찍 2021. 11. 1.

참고 : 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
반응형