STUDY/CSS

css animation 값 유동적으로 적용

수밤바 2019. 7. 5. 11:17
728x90

.bar {

 background:pink; // 기본색상

 animation: example 5s ;

}

 

@keyframes example {

 from {background-color: blue;}

 to {}  // 비워둠

}

 

- to 비워두면 inline으로 선언한 요소나 기본 선언된 속성(pink)가 먹힘! 꿀팁

 

ex)

프로그래스바 수치를 inline으로 적용, 퍼센테이지에 모션을 줘야 할때.

animation form width값이 0 부터 시작해서 inline으로 html에 넣어준 40%로 끝난다!

 

<span class="bar" style="width:40%">

.bar {

 animation: example 5s ;

}

@keyframes example {

 from {width:0;}

 to {}

}

 

'STUDY > CSS' 카테고리의 다른 글

rem 계산기  (0) 2019.07.05
css로 요소 개수 알아내기  (0) 2019.07.05
css 선택자 성능체크  (0) 2015.04.16
text-ellipsis  (0) 2015.02.10
font-face font변환  (0) 2013.11.07