91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

微信小程序如何實現圓形進度條

發布時間:2021-01-26 14:53:14 來源:億速云 閱讀:356 作者:小新 欄目:移動開發

這篇文章給大家分享的是有關微信小程序如何實現圓形進度條的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

小程序中使用圓形倒計時,效果圖:
微信小程序如何實現圓形進度條

思路

  1. 使用2個canvas 一個是背景圓環,一個是彩色圓環。

  2. 使用setInterval 讓彩色圓環逐步繪制。

解決方案

第一步先寫結構

一個盒子包裹2個canvas以及文字盒子;
盒子使用相對定位作為父級,flex布局,設置居中;
一個canvas,使用絕對定位作為背景,canvas-id="canvasProgressbg"
另一個canvas,使用相對定位作為進度條,canvas-id="canvasProgress"
代碼如下:

// wxml
 <view class="container">
     <view class='progress_box'>
        <canvas class="progress_bg"   canvas-id="canvasProgressbg">  </canvas> 
        <canvas class="progress_canvas"   canvas-id="canvasProgress">  </canvas> 
        <view class="progress_text">
            <view class="progress_dot"></view> 
            <text class='progress_info'> {{progress_txt}}</text>
        </view>     
    </view>
</view>
// wxss
.progress_box{
  position: relative;
  width:220px;
  height: 220px;  
// 這里的寬高是必須大于等于canvas圓環的直徑 否則繪制到盒子外面就看不見了
// 一開始設置 width:440rpx; height:440rpx; 發現 在360X640分辨率的設備,下繪制的圓環跑盒子外去了
// 小程序使用rpx單位適配 ,但是canvas繪制的是px單位的。所以只能用px單位繪制的圓環在盒子內顯示
  display: flex;  
  align-items: center;
  justify-content: center;
  background-color: #eee;
}
.progress_bg{
  position: absolute;
    width:220px;
  height: 220px; 
}
.progress_canvas{ 
  width:220px;
  height: 220px; 
} 
.progress_text{ 
  position: absolute; 
  display: flex;  
  align-items: center;
  justify-content: center
}
.progress_info{   
  font-size: 36rpx;
  padding-left: 16rpx;
  letter-spacing: 2rpx
} 
.progress_dot{
  width:16rpx;
  height: 16rpx;  
  border-radius: 50%;
  background-color: #fb9126;
}

第二步數據綁定

從wxml中可以看到我們使用了一個數據progress_txt,所以在js中設置data如下:

 data: {
    progress_txt: '正在匹配中...',  
  },

第三步canvas繪制

敲黑板,劃重點

1. 先繪制背景

  1. 在js中封裝一個畫圓環的函數drawProgressbg,canvas 畫圓

  2. 在onReady中執行這個函數;

小程序canvas組件與H5的canvas有點差別,請查看文檔,代碼如下

drawProgressbg: function(){
    // 使用 wx.createContext 獲取繪圖上下文 context
    var ctx = wx.createCanvasContext('canvasProgressbg')
    ctx.setLineWidth(4);// 設置圓環的寬度
    ctx.setStrokeStyle('#20183b'); // 設置圓環的顏色
    ctx.setLineCap('round') // 設置圓環端點的形狀
    ctx.beginPath();//開始一個新的路徑
    ctx.arc(110, 110, 100, 0, 2 * Math.PI, false);
    //設置一個原點(100,100),半徑為90的圓的路徑到當前路徑
    ctx.stroke();//對當前路徑進行描邊
    ctx.draw();
  },
 onReady: function () {
    this.drawProgressbg(); 
  },

看一下效果如下:
微信小程序如何實現圓形進度條

2. 繪制彩色圓環

  1. 在js中封裝一個畫圓環的函數drawCircle,

  2. 在onReady中執行這個函數;

  drawCircle: function (step){  
    var context = wx.createCanvasContext('canvasProgress');
      // 設置漸變
      var gradient = context.createLinearGradient(200, 100, 100, 200);
      gradient.addColorStop("0", "#2661DD");
      gradient.addColorStop("0.5", "#40ED94");
      gradient.addColorStop("1.0", "#5956CC");
      
      context.setLineWidth(10);
      context.setStrokeStyle(gradient);
      context.setLineCap('round')
      context.beginPath(); 
      // 參數step 為繪制的圓環周長,從0到2為一周 。 -Math.PI / 2 將起始角設在12點鐘位置 ,結束角 通過改變 step 的值確定
      context.arc(110, 110, 100, -Math.PI / 2, step * Math.PI - Math.PI / 2, false);
      context.stroke(); 
      context.draw() 
  },
 onReady: function () {
     this.drawProgressbg(); 
     this.drawCircle(2) 
  },
this.drawCircle(0.5) 效果如下:this.drawCircle(1) 效果如下:this.drawCircle(2) 效果如下:
微信小程序如何實現圓形進度條微信小程序如何實現圓形進度條微信小程序如何實現圓形進度條

3. 設置一個定時器

  1. 在js中的data設置一個計數器 count,一個步驟step,一個定時器

  2. 在js中封裝一個定時器的函數countInterval,

  3. 在onReady中執行這個函數;

  data: {
    progress_txt: '正在匹配中...',  
    count:0, // 設置 計數器 初始為0
    countTimer: null // 設置 定時器 初始為null
  },
    countInterval: function () {
    // 設置倒計時 定時器 每100毫秒執行一次,計數器count+1 ,耗時6秒繪一圈
    this.countTimer = setInterval(() => {
      if (this.data.count <= 60) {
        /* 繪制彩色圓環進度條  
        注意此處 傳參 step 取值范圍是0到2,
        所以 計數器 最大值 60 對應 2 做處理,計數器count=60的時候step=2
        */
         this.drawCircle(this.data.count / (60/2))
        this.data.count++;
      } else {
        this.setData({
          progress_txt: "匹配成功"
        }); 
        clearInterval(this.countTimer);
      }
    }, 100)
  },
 onReady: function () {
    this.drawProgressbg();
    // this.drawCircle(2) 
    this.countInterval()
  },

最終效果
微信小程序如何實現圓形進度條

感謝各位的閱讀!關于“微信小程序如何實現圓形進度條”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

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

AI

兴化市| 镇江市| 锦屏县| 定州市| 金华市| 沙雅县| 临沧市| 邳州市| 乌鲁木齐县| 棋牌| 绥江县| 信宜市| 巢湖市| 图木舒克市| 古浪县| 嘉荫县| 渝北区| 乌海市| 福贡县| 太保市| 新沂市| 海安县| 昌乐县| 永兴县| 都匀市| 西华县| 驻马店市| 茌平县| 漳平市| 郑州市| 怀仁县| 枣强县| 手机| 雅江县| 冷水江市| 清水河县| 庆阳市| 米易县| 新民市| 仁怀市| 乌拉特前旗|