小程序模板:专业的小程序模板与静态模板分享平台
小程序
教程
搜索
当前位置 : 首页> 小程序教程> uniapp 实现渐变圆弧进度条,并且根据实际数值控制进度

uniapp 实现渐变圆弧进度条,并且根据实际数值控制进度

在 uni-app 中实现渐变圆弧进度条,并且根据实际数值控制进度,可以利用 canvas 来绘制圆弧,并通过 canvas 的渐变功能实现渐变效果。

export default {
  onReady() {
    this.drawProgress(0.7); // 根据实际数值设置进度
  },
  methods: {
    drawProgress(progress) {
      const ctx = uni.createCanvasContext('progressCanvas', this);
      const width = 200;
      const height = 200;
      const radius = 80;
      const lineWidth = 20; // 进度条宽度
      const startAngle = Math.PI / 2;//正数向下闭合Math.PI / 2,负数向上闭合-Math.PI / 2
      const endAngle = startAngle + progress * 2 * Math.PI;
 
      // 渐变色
      const gradient = ctx.createLinearGradient(0, 0, width, height);
      gradient.addColorStop(0, '#ff0000');
      gradient.addColorStop(1, '#00ff00');
 
      // 绘制底部圆
      ctx.beginPath();
      ctx.arc(width / 2, height / 2, radius, 0, 2 * Math.PI);
      ctx.setStrokeStyle('#eaeaea');
      ctx.setLineWidth(lineWidth);
      ctx.stroke();
 
      // 绘制进度条
      ctx.beginPath();
      ctx.arc(width / 2, height / 2, radius, startAngle, endAngle, false);
      ctx.setStrokeStyle(gradient);
      ctx.setLineWidth(lineWidth);
      ctx.setLineCap('round');
      ctx.stroke();
 
      // 显示进度数值
      ctx.setFontSize(20);
      ctx.setFillStyle('#000000');
      ctx.setTextAlign('center');
      ctx.setTextBaseline('middle');
      ctx.fillText((progress * 100).toFixed(0) + '%', width / 2, height / 2);
 
      ctx.draw();
    }
  }
}

渐变圆弧:使用 ctx.createLinearGradient 创建线性渐变,并通过 addColorStop 设置渐变的颜色节点。

动态更新进度:通过 updateProgress 方法动态更新进度值,并重新调用 drawProgress 方法重新绘制进度条。

角度计算:通过 (progress / 100) * 2 * Math.PI 计算当前进度对应的弧度,从 -Math.PI / 2 开始绘制圆弧。

联系客服 意见反馈

签到成功!

已连续签到1天,签到3天将获得积分VIP1天

知道了