티스토리 뷰

CSS

🎞 Animation

baegofda_ 2020. 11. 11. 11:38

Animation

    - click, mouseover 등의 event 없이 동작하는 애니메이션

    - transition 보다 더 디테일하게 작업할 수 있다.

.animation {
	animation : animation-name 1s ease-in-out 500ms alternate infinite;
	/* name | duration | timing-function | delay | direction | iteration-count */
}

@keyframes animation-name {
	from {
	/* */
	}
	
	to {
	/* */
	}
}



/* detail */
@keyframes animation-name {
	0% {
	/* */
	}
	
	33% {
	/* */
	}

	100%{
	/* */
	}
}

https://developer.mozilla.org/ko/docs/Web/CSS/animation

 

animation

animation CSS 속성은 다수의 스타일을 전환하는 애니메이션을 적용합니다. animation-name, animation-duration, animation-timing-function, animation-delay, animation-iteration-count, animation-direction, animation-fill-mode, animatio

developer.mozilla.org

 

'CSS' 카테고리의 다른 글

🍟 Opacity  (0) 2020.11.11
🍔 Box Shadow  (0) 2020.11.11
🍕 Transition  (0) 2020.11.11
🖼 Background  (0) 2020.11.10
📂 Web Font  (0) 2020.11.10
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
«   2024/11   »
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
글 보관함