91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用小程序數字滾動插件的方法

發布時間:2020-12-21 14:17:33 來源:億速云 閱讀:354 作者:小新 欄目:移動開發

這篇文章主要介紹了使用小程序數字滾動插件的方法,具有一定借鑒價值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。

用es6語法方式寫了個微信小程序小插件–數字滾動;

效果圖:

使用小程序數字滾動插件的方法

wxml頁面布局代碼:

<!--pages/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);//每次累加的值
    this.interval = null;//計時器對象
    this.init();
  }
  init(){
    this.interval = 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(this.interval);
      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) {
      baseNum2 = 0;
    }
    baseNum = Math.pow(10, Math.max(baseNum1, baseNum2));
    return (num1 * baseNum + num2 * baseNum) / baseNum;
  };}export default NumberAnimate;

感謝你能夠認真閱讀完這篇文章,希望小編分享使用小程序數字滾動插件的方法內容對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,遇到問題就找億速云,詳細的解決方法等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

金塔县| 通河县| 东山县| 上栗县| 邵东县| 奎屯市| 白河县| 酒泉市| 那坡县| 蓬莱市| 鄂伦春自治旗| 吴桥县| 蒙自县| 夏邑县| 临海市| 盈江县| 炎陵县| 府谷县| 海宁市| 雅安市| 大丰市| 德州市| 县级市| 平和县| 井冈山市| 奉节县| 津市市| 郸城县| 五常市| 涞源县| 历史| 石阡县| 揭东县| 兰溪市| 平乡县| 深圳市| 东宁县| 阳春市| 铁力市| 万州区| 竹北市|