您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)微信小程序如何實(shí)現(xiàn)幸運(yùn)大轉(zhuǎn)盤功能的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。
幸運(yùn)大轉(zhuǎn)盤是一個(gè)簡(jiǎn)單的抽獎(jiǎng)小程序
參與用戶點(diǎn)擊抽獎(jiǎng)便可抽取輪盤的獎(jiǎng)品
抽獎(jiǎng)頁是一個(gè)大輪盤和活動(dòng)規(guī)則
頁面形式簡(jiǎn)單
主要核心在于輪盤
核心代碼【輪盤旋轉(zhuǎn)】如下:
getLottery: function () { var that = this var awardIndex = Math.random() * 6 >>> 0; // 獲取獎(jiǎng)品配置 var awardsConfig = app.awardsConfig, runNum = 8 if (awardIndex < 2) awardsConfig.chance = false console.log(awardIndex) // 旋轉(zhuǎn)抽獎(jiǎng) app.runDegs = app.runDegs || 0 console.log('deg', app.runDegs) app.runDegs = app.runDegs + (360 - app.runDegs % 360) + (360 * runNum - awardIndex * (360 / 6)) console.log('deg', app.runDegs) var animationRun = wx.createAnimation({ duration: 4000, timingFunction: 'ease' }) that.animationRun = animationRun animationRun.rotate(app.runDegs).step() that.setData({ animationData: animationRun.export(), btnDisabled: 'disabled' }) // 繪制轉(zhuǎn)盤 var awardsConfig = app.awardsConfig.awards, len = awardsConfig.length, rotateDeg = 360 / len / 2 + 90, html = [], turnNum = 1 / len // 文字旋轉(zhuǎn) turn 值 that.setData({ btnDisabled: app.awardsConfig.chance ? '' : 'disabled' }) var ctx = wx.createContext() for (var i = 0; i < len; i++) { // 保存當(dāng)前狀態(tài) ctx.save(); // 開始一條新路徑 ctx.beginPath(); // 位移到圓心,下面需要圍繞圓心旋轉(zhuǎn) ctx.translate(150, 150); // 從(0, 0)坐標(biāo)開始定義一條新的子路徑 ctx.moveTo(0, 0); // 旋轉(zhuǎn)弧度,需將角度轉(zhuǎn)換為弧度,使用 degrees * Math.PI/180 公式進(jìn)行計(jì)算。 ctx.rotate((360 / len * i - rotateDeg) * Math.PI/180); // 繪制圓弧 ctx.arc(0, 0, 150, 0, 2 * Math.PI / len, false); // 顏色間隔 if (i % 2 == 0) { ctx.setFillStyle('rgba(255,184,32,.1)'); }else{ ctx.setFillStyle('rgba(255,203,63,.1)'); } // 填充扇形 ctx.fill(); // 繪制邊框 ctx.setLineWidth(0.5); ctx.setStrokeStyle('rgba(228,55,14,.1)'); ctx.stroke(); // 恢復(fù)前一個(gè)狀態(tài) ctx.restore(); // 獎(jiǎng)項(xiàng)列表 html.push({turn: i * turnNum + 'turn', lineTurn: i * turnNum + turnNum / 2 + 'turn', award: awardsConfig[i].name}); }
效果如下:
領(lǐng)獎(jiǎng)頁是對(duì)獲獎(jiǎng)的信息進(jìn)行羅列
<view class="top"> <image class="userinfo-avatar" src="{{head}}" background-size="cover"></image> <text >失散多年的哥哥</text> </view> <view class="mid"> <button bindtap="gotoLottery" type="primary" >去抽獎(jiǎng)</button> </view> <view class="txt"> <text wx:if="{{awardsList.length > 0}}">恭喜您獲得了以下獎(jiǎng)品:</text> <text wx:if="{{awardsList.length == 0}}">您還中獎(jiǎng),快去抽獎(jiǎng)吧</text> </view> <view class="gift" wx:for="{{awardsList}}" wx:key="unique"> <text >{{item}}</text> </view>
感謝各位的閱讀!關(guān)于“微信小程序如何實(shí)現(xiàn)幸運(yùn)大轉(zhuǎn)盤功能”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。