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

溫馨提示×

溫馨提示×

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

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

如何使用setInterval方法實現一個變速大轉盤

發布時間:2021-12-20 10:34:59 來源:億速云 閱讀:199 作者:iii 欄目:移動開發

這篇文章主要講解了“如何使用setInterval方法實現一個變速大轉盤”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“如何使用setInterval方法實現一個變速大轉盤”吧!

使用小程序來實現一個大轉盤吧!大轉盤都不陌生,開始抽獎,然后停止的位置就是獲得的獎品。

實現方法:setInterval

先來實現一下勻速大轉盤吧

先將轉盤設計好,比如3 x 3 的大轉盤,中間是個開始按鈕;
我這里設置的是背景顏色的變化,當抽獎到達某個位置時,這個位置的顏色發生變化;
先貼一下我的ttml頁面吧(不要在意我奇怪的配色~)
// index.ttml
<view class="container">
    <view class="box">
        <view class="item" style="background-color: {{ index == 4 ? 'red': (index == active ? 'rgb(229, 250, 250)' : 'rgb(236, 216, 135)')}};" tt:for="{{games}}" bindtap="{{index == 4 ? 'beginLottery' : ''}}">{{item}}</view>
    </view>
</view>
順便css也貼一下吧,看效果直接復制就好了嘛
// index.ttss
.box{
    margin: 0 auto;
    width: 600rpx;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid black;
}
.item{
    width: 200rpx;
    height: 200rpx;
    line-height: 200rpx;
    text-align: center;
}

另起一行,只是換個位置貼js

  1. 先看data:games是轉盤上要顯示的內容,轉盤的格式可以根據自己的需求自己來寫,我這個就是最基本的。active用來記錄旋轉到了什么位置,start用來記錄開始的位置

  2. 再來看全局定義的round和timer。round用來設置一個軌跡,相當于鋪路啦,里面是要走的下標,剛好是外圍一圈。timer是定時器

  3. 最后看begin方法吧

// index.js
const round = [0,1,2,5,8,7,6,3,0];
let timer ;
Page({
  data: {
    games:['$1','$2','$3','$4','開始','$5','$6','$7','$8'],
    active: 0,
    start: 0,
  },
  onLoad: function (options) {
    
  },
  beginLottery(){
    this.begin();
  },
  // begin
  begin(){
    let start = this.data.start;
    let random = Math.floor(Math.random()*9);
    let num = 0;
    timer = setInterval(() => {
      start++;
      start = start > 8 ? 0 : start;
      this.setData({
        start,
        active: round[start]
      })
      num++;
      if(num > 24 && this.data.active == random){// 
        clearInterval(timer)
      }
    }, 70);
    
  }
})

比較簡單,然后實現變速,其實速度的改變就是旋轉一圈時間的改變

我這里的設計是:每旋轉兩圈實現一次變速,每次變速的時間在上一次時間上+100s,在第五圈停止

//index.js

const round = [0, 1, 2, 5, 8, 7, 6, 3, 0];
let timer; // 定時器
let num = 0; // 用來記錄一共轉了幾次,方便判斷轉的圈數
let start = 0; // 記錄開始的位置下標
let random = ''; // 記錄停下來的隨機數(下標)
let time = 70; // 記錄定時器的時間
let count = 0; // 記錄圈數,用來判斷每2圈一次變速
Page({
  data: {
    games: ['$1', '$2', '$3', '$4', '開始', '$5', '$6', '$7', '$8'],
    active: 0,
  },
  onLoad: function (options) {},
  beginLottery() {
    this.begin1();
  },
  begin1() {
    if(num != 0){
    // 防止用戶重復點擊
      return
    }
    timer = setInterval(this.process, time);
  },
  // 旋轉的過程
  process() {
    start = start + 1;
    if (start >= 8) {
      start = 0;
      // 當start = 8的時候,表示已經轉過1圈了count+1
      count = count + 1;
    }
    this.setData({
      active: round[start]
    })
    num = num + 1;
    // 實現兩圈一次變速
    if (num % 8 === 0 && count === 2) {
      count = 0;
      clearInterval(timer);
      time = time + 100;
      timer = setInterval(this.process, time);
      // 轉了4圈,即將在第五圈停止
      if (Math.floor(num / 8) === 4) {
        this.getRandom();
      }
    }
    if (this.data.active === random) {
      clearInterval(timer);
      num = 0;
      random = '';
      time = 70;
      count = 0;
    }
  },
  getRandom(){
    let n = Math.floor(Math.random() * 9);
    if(n == 4){
      this.getRandom();
    }else{
      random = n
      return;
    }
  }
})

示例代碼是根據旋轉的圈數來進行變速,也可以根據旋轉一定的時間來實現變速,這樣就需要使用setTimeout來實現。

感謝各位的閱讀,以上就是“如何使用setInterval方法實現一個變速大轉盤”的內容了,經過本文的學習后,相信大家對如何使用setInterval方法實現一個變速大轉盤這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

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

AI

昌宁县| 肃南| 祁东县| 泸州市| 桂林市| 岑巩县| 阿图什市| 铁岭县| 洪洞县| 浪卡子县| 郧西县| 禹城市| 莫力| 怀宁县| 平顺县| 安义县| 金寨县| 琼海市| 呈贡县| 开化县| 桃江县| 绿春县| 聂拉木县| 明光市| 平远县| 渭南市| 蛟河市| 龙口市| 嘉荫县| 敦化市| 天水市| 宁夏| 甘德县| 旬邑县| 临高县| 监利县| 仙居县| 双辽市| 巴马| 建始县| 彩票|