微信小程序實現數字滾動動畫
本文實例為大傢分享瞭微信小程序實現數字滾動效果的具體代碼,供大傢參考,具體內容如下
效果圖
實現思路
1、為瞭實現數字的無限滾動效果,每個數字框的內部,其實包含瞭兩組0~9的view,每個View的高度都一樣
2、數字框內使用絕對定位,通過調整top位置,顯示出指定的數字
3、使用transtion動畫,top發生變化時就會滾動,然後通過指定動畫的delay、duration,使數字之間延時動畫
項目代碼
js文件
// components/scroll-number/index.js Component({ externalClasses: ['container-class', 'item-class', 'dot-class'], properties: { value: { type: String, value: '' }, /** 一次滾動耗時 單位ms */ duration: { type: Number, value: 1600 }, /** 每個數字之間的延遲滾動 */ delay: { type: Number, value: 200 } }, data: { valArr: [], aniArr: [], // 動畫列表,和valArr對應 numArr: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9], // 所有數字 itemHeight: 0 // 數字項的高度 }, observers: { value: function (newVal) { // 監聽value變化,格式化為valArr let valArr = [] if (newVal) { valArr = newVal.split('').map(o => { return { val: o, isNaN: isNaN(o)} }) } this.setData({ valArr: valArr }) this.getNumberHeight() } }, methods: { /** 計算數字高度 */ 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() }) }, /** 開始滾動動畫 */ 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" style="transition-duration: {{duration}}ms; {{aniArr[index]}}"> <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; }
以上就是本文的全部內容,希望對大傢的學習有所幫助,也希望大傢多多支持WalkonNet。