liuying
2024-11-26 3aa5940da6995787b78c339e01812cbb3b9d075a
1
2
3
4
5
6
7
import { CountUp } from "countup.js";
const demo = new CountUp("myTargetElement", 6884);
if (!demo.error) {
  demo.start();
} else {
  console.error(demo.error);
}