uni-app项目数字滚动

发布时间:2019-06-27 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了uni-app项目数字滚动脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。

uni-app项目数字滚动

github地址,喜欢的可以star下哦

插件预览图

图片描述

使用教程

1.插件代码拷贝

  • 下载后把components目录下countUp.vue文件拷贝到自己项目目录下

2.插件全局配置

  • 在项目里main.js中配置如下代码
import countUp from './components/countUp.vue'

Vue.component('countup',countUp)

3.插件使用

  • vue页面使用
<template>
    <view>
        <countup :num="num" color="#ff9e50" width='13' height='23' fontSize='23'></countup>
        <button @tap="add">Add</button>
        <button @tap="reduce">Reduce</button>
    </view>
</template>

<script>
export default {
    data() {
        return {
            num:123.453
        };
    },
    onLoad() {},
    methods: {
        add() {
            this.num=++this.num;
        },
        reduce(){
            this.num=--this.num;
        }
    }
};
</script>

兼容性

uni-app项目中使用都兼容

脚本宝典总结

以上是脚本宝典为你收集整理的uni-app项目数字滚动全部内容,希望文章能够帮你解决uni-app项目数字滚动所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签:Vue