몽땅뚝딱 개발자

[CSS] animation과 keyframe 본문

Development/HTML · CSS

[CSS] animation과 keyframe

레오나르도 다빈츠 2023. 3. 27. 23:14

 

animation

- frame by frame animation은 gif를 사용하면 이미지 깨짐현상 등으로 의도한대로 노출되지 않을 수 있다. 애니메이션을 CSS로 구현하면 커스텀이 쉽다.

@keyframes dot {
    0% {
      opacity: 0.2;
    }
    25% {
      opacity: 1;
    }
    50% {
      opacity: 0.2;
    }
    100% {
      opacity: 0.2;
    }
}
/* linear: 일정한 속도 */
/* alternate: 반복하기 */
/* reverse: 반대로 시작 */
/* alternate-reverse: 반대로시작해서 반복 */
/* forwards: 애니메이션이 끝난 위치에서 끝남 */
/* steps: 애니메이션을 17단계로 자름 */
.dot {
    animation: dot 1s infinite linear alternate;
    animation: dot 1s infinite linear reverse;
    animation: dot 1s infinite linear alternate-reverse;
    animation: dot 1s infinite linear forwards;
    animation: dot 1s infinite steps(17);
}

/* running: 기본값 */
/* paused: hover 시 중지된다. */
.dot:hover {
    animation-play-state: paused;
}

 

 

 @keyframes

@keyframes dot {
    0% {
      opacity: 0.2;
    }
    100% {
      opacity: 0.2;
    }
}

/* from: 시작 */
/* to: 끝 */
@keyframes dot {
    from {
      opacity: 0.2;
    }
    to {
      opacity: 0.2;
    }
}

 

 

 


 

 

 

출처

 

인터랙티브 웹 개발 제대로 시작하기 - 인프런 | 강의

크리에이티브 넘치는 인터랙티브 웹페이지를 개발할 수 있는 기본기를 다질 수 있는 수업입니다., - 강의 소개 | 인프런

www.inflearn.com

 

'Development > HTML · CSS' 카테고리의 다른 글

[CSS] 토스트를 만드는 5가지 방법  (0) 2023.04.18
[CSS] 3D  (0) 2023.03.28
[CSS] Transition  (0) 2023.03.27
[CSS] Transform  (0) 2023.03.27
[HTML/CSS] 이런 방법도 있었네! + 미세팁  (0) 2023.03.25
Comments