npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

count-up-number

v0.0.8

Published

vue数字滚动组件

Downloads

19

Readme

count-up-number

vue 数字滚动组件

Usage

感谢大家的厚爱,问题反馈:[email protected]

1:安装

npm install count-up-number --save
or
yarn add count-up-number

2:引入

在main.js中

// 导入组件
import countUp from 'count-up-number'
import 'count-up-number/lib/countup.css'
// 注册组件库
Vue.use(countUp);

3:使用

<countUp />

// 使用
export default {
  data() {
    return {
      number: 1234.5, // 滚动数字
      symbol: ",", // 千位分隔符
      itemHeight: 20, // 数字高度
      scrollTime: 1000, // 滚动动画时间
      className: "my-class", // 自定义class
      initStatus: true, // 初始是否滚动
    };
  },
  mounted() {
    setTimeout(() => {
      this.number = 918746;
    }, 3000);
  },
};

// 自定义样式使用
.my-class {
  width: 25px;
  margin-right: 10px;
}
.my-class .item {
  width: 25px;
  background: #f60;
  color: #fff;
}

日志

2023-09-03

修复传入相同数字不执行动画问题(注意:传入相同数字不会触发组件更新,需要单独处理,把再次传入的数字转换成字符串即可)。

2022-02-20

优化重复数字key值一样console报错。

API

<countUp
:number="123456"
:symbol=","
:scrollTime="1000"
:className="my-class"
:initStatus="true"
:itemHeight="30" />

number(必填)

滚动数字 [Number]

symbol

千位分隔符 不显示(默认) [String]

scrollTime

数字滚动时间(默认 1000,毫秒) [Number]

className

自定义样式 class [String]

initStatus

初始化是否滚动(默认 true) [Boolean]

itemHeight

数字滚动高度(默认 20px) [Boolean]