【移动应用开发技术】使用小程序数字滚动插件的方法_第1页
【移动应用开发技术】使用小程序数字滚动插件的方法_第2页
【移动应用开发技术】使用小程序数字滚动插件的方法_第3页
【移动应用开发技术】使用小程序数字滚动插件的方法_第4页
【移动应用开发技术】使用小程序数字滚动插件的方法_第5页
免费预览已结束,剩余2页可下载查看

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

【移动应用开发技术】使用小程序数字滚动插件的方法

这篇文章主要介绍了使用小程序数字滚动插件的方法,具有一定借鉴价值,需要的朋友可以参考下。希望大家阅读完这篇文章后大有收获。下面让在下带着大家一起了解一下。用es6语法方式写了个微信小程序小插件–数字滚动;效果图:wxml页面布局代码:<!s/main/index.wxml--><view

class="animate-number">

<view

class="num

num1">{{num1}}{{num1Complete}}</view>

<view

class="num

num2">{{num2}}{{num2Complete}}</view>

<view

class="num

num3">{{num3}}{{num3Complete}}</view>

<view

class="btn-box">

<button

bindtap="animate"

type="primary"

class="button">click

me</button>

</view></view>index.js调用NumberAnimate.js//

pages/main/index.jsimport

NumberAnimate

from

"../../utils/NumberAnimate";Page({

data:{

},

onLoad:function(options){

//

页面初始化

options为页面跳转所带来的参数

},

onReady:function(){

},

onShow:function(){

//

页面显示

},

onHide:function(){

//

页面隐藏

},

onUnload:function(){

//

页面关闭

},

//调用NumberAnimate.js中NumberAnimate实例化对象,测试3种效果

animate:function(){

this.setData({

num1:'',

num2:'',

num3:'',

num1Complete:'',

num2Complete:'',

num3Complete:''

});

let

num1

=

18362.856;

let

n1

=

new

NumberAnimate({

from:num1,//开始时的数字

speed:2000,//

总时间

refreshTime:100,//

刷新一次的时间

decimals:3,//小数点后的位数

onUpdate:()=>{//更新回调函数

this.setData({

num1:n1.tempValue

});

},

onComplete:()=>{//完成回调函数

this.setData({

num1Complete:"

完成了"

});

}

});

let

num2

=

13388;

let

n2

=

new

NumberAnimate({

from:num2,

speed:1500,

decimals:0,

refreshTime:100,

onUpdate:()=>{

this.setData({

num2:n2.tempValue

});

},

onComplete:()=>{

this.setData({

num2Complete:"

完成了"

});

}

});

let

num3

=

2123655255888.86;

let

n3

=

new

NumberAnimate({

from:num3,

speed:2000,

refreshTime:100,

decimals:2,

onUpdate:()=>{

this.setData({

num3:n3.tempValue

});

},

onComplete:()=>{

this.setData({

num3Complete:"

完成了"

});

}

});

}})NumberAnimate.js代码:/**

*

Created

by

wangyy

on

2016/12/26.

*/'use

strict';class

NumberAnimate

{

constructor(opt)

{

let

def

=

{

from:50,//开始时的数字

speed:2000,//

总时间

refreshTime:100,//

刷新一次的时间

decimals:2,//

小数点后的位数

onUpdate:function(){},

//

更新时回调函数

onComplete:function(){}

//

完成时回调函数

}

this.tempValue

=

0;//累加变量值

this.opt

=

Object.assign(def,opt);//assign传入配置参数

this.loopCount

=

0;//循环次数计数

this.loops

=

Math.ceil(this.opt.speed/this.opt.refreshTime);//数字累加次数

this.increment

=

(this.opt.from/this.loops);//每次累加的值

erval

=

null;//计时器对象

this.init();

}

init(){

erval

=

setInterval(()=>{this.updateTimer()},this.opt.refreshTime);

}

updateTimer(){

this.loopCount++;

this.tempValue

=

this.formatFloat(this.tempValue,this.increment).toFixed(this.opt.decimals);

if(this.loopCount

>=

this.loops){

clearInterval(erval);

this.tempValue

=

this.opt.from;

this.opt.onComplete();

}

this.opt.onUpdate();

}

//解决0.1+0.2不等于0.3的小数累加精度问题

formatFloat(num1,

num2)

{

let

baseNum,

baseNum1,

baseNum2;

try

{

baseNum1

=

num1.toString().split(".")[1].length;

}

catch

(e)

{

baseNum1

=

0;

}

try

{

baseNum2

=

num2.toString().split(".")[1].length;

}

catch

(e)

{

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论