溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

微信小程序如何實(shí)現(xiàn)數(shù)字滾動(dòng)動(dòng)畫

發(fā)布時(shí)間:2022-07-19 09:31:19 來源:億速云 閱讀:729 作者:iii 欄目:開發(fā)技術(shù)

本文小編為大家詳細(xì)介紹“微信小程序如何實(shí)現(xiàn)數(shù)字滾動(dòng)動(dòng)畫”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“微信小程序如何實(shí)現(xiàn)數(shù)字滾動(dòng)動(dòng)畫”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學(xué)習(xí)新知識(shí)吧。

效果圖

微信小程序如何實(shí)現(xiàn)數(shù)字滾動(dòng)動(dòng)畫

實(shí)現(xiàn)思路

1、為了實(shí)現(xiàn)數(shù)字的無限滾動(dòng)效果,每個(gè)數(shù)字框的內(nèi)部,其實(shí)包含了兩組0~9的view,每個(gè)View的高度都一樣
2、數(shù)字框內(nèi)使用絕對(duì)定位,通過調(diào)整top位置,顯示出指定的數(shù)字
3、使用transtion動(dòng)畫,top發(fā)生變化時(shí)就會(huì)滾動(dòng),然后通過指定動(dòng)畫的delay、duration,使數(shù)字之間延時(shí)動(dòng)畫

項(xiàng)目代碼

js文件

// components/scroll-number/index.js
Component({
  externalClasses: ['container-class', 'item-class', 'dot-class'],
  properties: {
    value: {
      type: String,
      value: ''
    },
    /** 一次滾動(dòng)耗時(shí) 單位ms */
    duration: {
      type: Number,
      value: 1600
    },
    /** 每個(gè)數(shù)字之間的延遲滾動(dòng) */
    delay: {
      type: Number,
      value: 200
    }
  },
  data: {
    valArr: [],
    aniArr: [],  // 動(dòng)畫列表,和valArr對(duì)應(yīng)
    numArr: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],  // 所有數(shù)字
    itemHeight: 0  // 數(shù)字項(xiàng)的高度
  },
  observers: {
    value: function (newVal) {
      // 監(jiān)聽value變化,格式化為valArr
      let valArr = []
      if (newVal) {
        valArr = newVal.split('').map(o => {
          return { val: o, isNaN: isNaN(o)}
        })
      }
      this.setData({
        valArr: valArr
      })
      this.getNumberHeight()
    }
  },
  methods: {
    /** 計(jì)算數(shù)字高度 */
    getNumberHeight() {
      if (this.data.itemHeight > 0) {
        this.startScrollAni()
        return
      }
      const query = this.createSelectorQuery()
      query.select('.number-item').boundingClientRect()
      query.exec((res) => {
        this.setData({
          itemHeight: res[0].height
        })
        this.startScrollAni()
      })
    },
    /** 開始滾動(dòng)動(dòng)畫 */
    startScrollAni() {
      if (this.data.itemHeight <= 0) return

      const aniArr = []
      this.data.valArr.forEach((item, index) => {
        if(!item.isNaN) {
          aniArr.push(`transition-delay: ${this.data.delay * index}ms; top: ${-this.data.itemHeight * (this.data.numArr[parseInt(item.val)] + 10)}px;`)
        } else {
          aniArr.push(null)
        }
      })
      this.setData({
        aniArr: aniArr
      })
    }
  }
})

wxml文件

<!--components/scroll-number/index.wxml-->
<view class="scroll-number container-class">
  <block wx:for="{{valArr}}" wx:key="index">
    <view wx:if="{{item.isNaN}}" class="scroll-number-item number-dot dot-class">{{item.val}}</view>
    <view wx:else class="scroll-number-item number-item item-class">
      <view class="scroll-ani" >
        <view wx:for="{{numArr}}" wx:for-item="num" wx:for-index="idx" wx:key="idx" class="num{{num}}">{{num}}</view>
        <view wx:for="{{numArr}}" wx:for-item="num" wx:for-index="idx" wx:key="idx" class="num{{num}}">{{num}}</view>
      </view>
    </view>
  </block>
</view>

wxss文件

/* components/scroll-number/index.wxss */
.scroll-number {
  display: flex;
  align-items: flex-end;
}
.scroll-number-item {
  color: #0079FE;
  font-size: 48rpx;
  font-weight: bold;
  margin: 0 24rpx;
  font-family: Microsoft YaHei;
}
.number-item {
  background-color: rgba(0, 121, 254, 0.2);
  border-radius: 8rpx;
  width: 56rpx;
  height: 72rpx;
  line-height: 72rpx;
  overflow: hidden;
  text-align: center;
  position: relative;
}
.number-dot {
  margin: 0 12rpx;
}
.scroll-ani {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 2s ease-in-out 0s;
}

讀到這里,這篇“微信小程序如何實(shí)現(xiàn)數(shù)字滾動(dòng)動(dòng)畫”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識(shí)點(diǎn)還需要大家自己動(dòng)手實(shí)踐使用過才能領(lǐng)會(huì),如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI