美文网首页
数字: 数字增加或减少

数字: 数字增加或减少

作者: 岚平果 | 来源:发表于2021-02-02 13:54 被阅读0次

    vue-number-scroll:一个数字显示递增或减少到指定数字

    • 1、安装 vue-number-scroll
    npm install --save vue-number-scroll
    
    • 2、组件 引用
    import vns from 'vue-number-scroll'
    
    • 3、使用
    <vns :start="0" :end="99" :times="10" :speed="50"/>
    
    • 4、例如
    排名:<vns :start="0" :end="99" :speed="80" :times="20" :format="num => '第' + num + '名'"/>
    金额:<vns :start="0" :end="18299.5" :speed="80" :times="10" :format="num => num + '元'"/>
    
    • 5、参数


      image.png

    相关文章

      网友评论

          本文标题:数字: 数字增加或减少

          本文链接:https://www.haomeiwen.com/subject/pjlytltx.html