CSS 226

animation-direction / 방향

See the Pen animation-direction by nilgi (@nilgi) on CodePen. animation-direction: normal; // 기본, 생략 animation-direction: reverse; // 역방향 animation-direction: alternate; // 정방향 → 역방향 animation-direction: alternate-reverse; // 역방향 → 정방향 - - - 대부분의 편집기는 앞글자만 입력하면 자동으로 코드를 선택할 수 있습니다. 그러나 이건 공부에 별 도움이 안 됩니다. 가능하면 직접 모두 입력해보는 게 좋습니다. 정말 완벽하게 숙지했다면 빠른 작업을 위해 자동 코드 넣기를 사용하는 게 좋겠지요. 한 번이라도 더 써보아요.

CSS 2021.09.10

animation @keyframe %%

See the Pen animation @keyframes % by nilgi (@nilgi) on CodePen. 다시 보기 : Rerun ▲ animation-name: boxc; // 애니메이션 이름 지정 animation-duration: 8s; // 애니메이션 길이 8초 @keyframes boxc{ // 키프레임 이름 0% {background: tomato;} // 위 지정 시간의 0% 지점에 배경 토마토색 25% {background: gold;} // 지정 시간의 25% 지점에 배경 금색 50% {background: #1E90FF;} // 지정 시간의 50% 지점에 배경 파랑색 100% {background: #9400d3;} // 지정 시간의 100% 지점에 배경 보라색 } 이렇게 시..

CSS 2021.08.31

transition-timing-funcion 전환 속도

See the Pen transition-timing-function by nilgi (@nilgi) on CodePen. • transition-timing-function: linear; // 시작부터 끝가지 똑같은 속도 • transition-timing-function: ease; / (기본값) 느림 - 빠름 - 느림 • transition-timing-function: ease-in; / 느린 시작 • transition-timing-function: ease-out; / 느린 끝내기 • transition-timing-function: ease-in-out; / 시작과 끝을 느리게, 기본값 ease와 조금 헷갈리는데 여기는 빠름이 없다.

CSS 2021.08.17