中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

如何使用微信小程序抽獎組件

發布時間:2021-01-11 13:41:14 來源:億速云 閱讀:188 作者:Leah 欄目:開發技術

如何使用微信小程序抽獎組件?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

使用步驟:

步驟一:

安裝依賴或前往githua下載源碼,拷貝dist目錄下的lottery-turntable目錄

npm i lottery-turntable-for-wx-miniprogram

步驟二:

頁面JSON配置

{
 "usingComponents": {
  "lottery-turntable":"lottery-turntable-for-wx-miniprogram/lottery_turntable/index"
 }
}

步驟三:

準備數據和增加事件處理(使用組件頁面JS)

const datas = [{
 "id": "792085712309854208",
 "imgUrl": "../../images/icon.png",
 "title": "迅雷白金會員月卡 - 1"
}, {
 "id": "766410261029724160",
 "imgUrl": "../../images/icon.png",
 "title": "迅雷白金會員月卡 - 2"
}, {
 "id": "770719340921364480",
 "imgUrl": "../../images/icon.png",
 "title": "迅雷白金會員月卡 - 3"
}, {
 "id": "770946438416048128",
 "imgUrl": "../../images/icon.png",
 "title": "迅雷白金會員月卡 - 4"
}, {
 "id": "781950121802735616",
 "imgUrl": "../../images/icon.png",
 "title": "迅雷白金會員月卡 - 5"
}, {
 "id": "766411654436233216",
 "imgUrl": "../../images/icon.png",
 "title": "迅雷白金會員月卡 - 6"
}, {
 "id": "770716883860332544",
 "imgUrl": "../../images/icon.png",
 "title": "迅雷白金會員月卡 - 7"
}, {
 "id": "796879308510732288",
 "imgUrl": "../../images/icon.png",
 "title": "迅雷白金會員月卡 - 8"
}];
 
Page({
 data: {
  datas: datas, // 數據 
  prizeId: '', // 抽中結果id,通過屬性方式傳入組件
  config: { 		// 轉盤配置,通過屬性方式傳入組件
   titleLength: 7
  }
 },
 /**
  * 次數不足回調
  * @param e
  */
 onNotEnoughHandle(e) {
  wx.showToast({
   icon: 'none',
   title: e.detail
  })
 },
 
 /**
  * 抽獎回調
  */
 onLuckDrawHandle() {
  this.setData({
   prizeId: this.data.datas[Math.floor(Math.random() * 10 % this.data.datas.length)].id
  });
 },
 
 /**
  * 動畫旋轉完成回調
  */
 onLuckDrawFinishHandle() {
  const datas = this.data.datas;
  const data = datas.find((item) => {
   return item.id === this.data.prizeId;
  });
  wx.showToast({
   icon: 'none',
   title: `恭喜你抽中 ${data.title}`
  })
  this.setData({
   prizeId: ''
  });
 }
})

步驟四:

頁面使用

<lottery-turntable
   data="{{datas}}"
   prize-id="{{prizeId}}"
   count="{{5}}"
   config="{{config}}"
   bindLuckDraw="onLuckDrawHandle"
   bindNotEnough="onNotEnoughHandle"
   bindLuckDrawFinish="onLuckDrawFinishHandle"
  ></lottery-turntable>

步驟五:

更改組件配置項(以下為默認配置),通過config屬性傳入一個js對象

/**
 * ease: 取值如下
 * 'linear' 動畫從頭到尾的速度是相同的
 * 'ease' 動畫以低速開始,然后加快,在結束前變慢
 * 'ease-in' 動畫以低速開始
 * 'ease-in-out' 動畫以低速開始和結束
 * 'ease-out' 動畫以低速結束
 * 'step-start' 動畫第一幀就跳至結束狀態直到結束
 * 'step-end' 動畫一直保持開始狀態,最后一幀跳到結束狀態
 */
// 以下為默認配置
let config = {
 size: {
  width: '572rpx',
  height: '572rpx'
 },                   // 轉盤寬高
 bgColors: ['#FFC53F', '#FFED97'],    // 轉盤間隔背景色 支持多種顏色交替
 fontSize: 10,              // 文字大小
 fontColor: '#C31A34',          // 文字顏色
 titleMarginTop: 12,           // 最外文字邊距
 titleLength: 6             // 最外文字個數
 iconWidth: 29.5,            // 圖標寬度
 iconHeight: 29.5,            // 圖標高度
 iconAndTextPadding: 4,         // 最內文字與圖標的邊距
 duration: 8000,             // 轉盤轉動動畫時長
 rate: 1.5,               // 由時長s / 圈數得到
 border: 'border: 10rpx solid #FEFAE4;', // 轉盤邊框
 ease: 'ease-out'            // 轉盤動畫
};

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

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

AI

运城市| 通化县| 湖南省| 宝鸡市| 蒲江县| 郎溪县| 榆树市| 孝感市| 苍南县| 大埔区| 探索| 炎陵县| 枞阳县| 抚顺市| 马龙县| 四子王旗| 宁陵县| 达拉特旗| 班玛县| 武平县| 玉龙| 都昌县| 房山区| 瑞安市| 赫章县| 新闻| 静海县| 乐东| 凯里市| 南雄市| 枣阳市| 广昌县| 乌恰县| 咸阳市| 孟州市| 镶黄旗| 汶川县| 博兴县| 云林县| 桑植县| 无锡市|