当前位置:网站首页>Applet canvas canvas half ring

Applet canvas canvas half ring

2022-04-23 02:07:00 Yixi Muze

1、 design sketch :

 

2、wxml:

<view class="fragrance_item">
  <view class="fragPos">
    <view class="fragNum">{
   {perfumePercent}}%</view>
    <view class="fragText"> Perfume allowance </view>
  </view>
  <view class="fragPsoReset">
    <view bindtap="resetTab" class="fragReset" hover-class="fragModel_hover">
      <image class="fragReset_icon" src="/static/image/reset.png" mode="widthFix"> </image>
      <view> Reset </view>
    </view>
  </view>
  <view class="fragRing">
    <canvas id="perfumeBalance" type="2d" style="width: 220px; height: 120px;" ></canvas>
  </view>
</view>

3、wxss:

.fragModel_hover{box-shadow: 0.2rem 0 0.3rem #8fd0e0, -0.2rem 0 0.3rem #58bfd1;}
.fragrance_item{position: relative;margin-left: 15px;margin-right: 15px;}
.fragPos{position: absolute;left: 50%; top: 50%;transform: translateX(-50%);text-align: center;}
.fragPos .fragNum{color:#32CD32;}
.fragPsoReset{position: absolute;right: 3px;top: 36px;text-align: center;}
.fragPsoReset .fragReset{display:inline-block;padding:8px 13px;background-color: rgba(50,80,80.68);border-radius: 15px;transition: all .3s ease-in;font-size: 12px;}
.fragPsoReset .fragReset_icon{width:22px;height:22px;}
.fragRing{width: 220px;height:120px;margin: auto;}

4、js:

let perfumeNum = 1.5;
Page({
  data: {
    perfumePercent: 0, //  Perfume allowance 
  },

  /**
   *  Life cycle function -- Monitor page loading 
   */
  onLoad: function (options) {
    let that = this;
    //  Perfume margin ring 
    const query = wx.createSelectorQuery()
    query.select('#perfumeBalance') .fields({ node: true, size: true }).exec((res) => {
      that.initRing(res);
    })
  },
  // b、 Perfume allowance 
  initRing(res) {
    let that = this;
    const canvas = res[0].node
    const ctx = canvas.getContext('2d');
    const dpr = wx.getSystemInfoSync().pixelRatio //  Device pixel ratio 
    canvas.width = res[0].width * dpr
    canvas.height = res[0].height * dpr
    ctx.scale(dpr, dpr);
    var circleR = 220 / 2; //  Half of the canvas , Used to find the center point and radius 
    ctx.translate(0, 0);   //  Define the starting point 
    function draw() {
      ctx.clearRect(0, 0, canvas.width, canvas.height);
      //  Color ring 
      ctx.beginPath();
      ctx.strokeStyle = '#fff';//transparent
      ctx.lineWidth = 12;
      ctx.lineCap='round' //  Set the shape of the end of the ring 
      ctx.arc(circleR, circleR-10, circleR - 35, Math.PI, 2 * Math.PI, false);
      ctx.stroke();
      ctx.closePath();
      console.log(" Perfume allowance ")
      //  speed of progress _ Perfume allowance 
      ctx.beginPath(); //  Start a path , Or reset the current path 
      ctx.lineWidth = 6;  //  Line width 
      ctx.lineCap='round' //  End style of line 
      ctx.arc(circleR, circleR-10, circleR - 35, Math.PI,perfumeNum * Math.PI, false);
      ctx.strokeStyle = "#00CED1";//transparent
      ctx.stroke();
      canvas.requestAnimationFrame(draw);
    }
    draw();
  },

  //  Reset 
  resetTab(){
    let that = this;
    perfumeNum = 2; //  Perfume allowance 100%
    that.setData({
      perfumePercent: 100,
    })
  },
})

版权声明
本文为[Yixi Muze]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204230207164830.html