数字相关插件

数字滚轴效果 odometer

  • 2020.10.21

odometer是一款使用javascriptcss构建的数字滚轴插件,可以平滑的展示数字的变化动画效果。

安装

npm i odometer
<template>
  <div class="demo-wrap">
    <div class="number" ref="demo">{{ defaultNum }}</div>
  </div>
</template>
const od = new Odometer({
    el: this.$refs.demo,
    value: 0,
    duration: 2000,
    dot: 0,
        animation: "count",
        format: "",
        theme: "coin-animate-defualt",
});

od.update(8888);
上次更新时间: 2020-10-31 11:21:00