음악, 삶, 개발

css 의 animation 을 확장하기 (css @property) 본문

개발 Web/HTML & CSS

css 의 animation 을 확장하기 (css @property)

Lee_____ 2022. 1. 26. 05:21

https://css-tricks.com/animating-number-counters/

 

 

@property, counter-reset, counter()

/* body { background-color: black; } */

@property --num {
  syntax: '<integer>';
  initial-value: 0;
  inherits: false;
}


#foo {
  
  transition: --num 20s;
  counter-reset: num var(--num);
  
}
#foo:hover {
  --num: 100000000;
}
#foo::after {
  content: counter(num);
}