VUE2 环形进度条(百分比动态加载)

在Vue 2中创建一个环形进度条组件,可以使用以下步骤:

  1. 定义组件模板。
  2. 使用CSS绘制环形进度条的外观。
  3. 使用Vue的响应式属性来动态更新进度条的百分比。

以下是一个简单的环形进度条组件示例:




<template>
  <div class="progress-ring" :style="{ transform: `scale(${size})` }">
    <svg :width="radius" :height="radius" viewBox="0 0 100 100">
      <circle class="progress-ring__circle"
              cx="50"
              cy="50"
              :r="innerRadius"
              :stroke-width="thickness"
              stroke="grey"
              fill="transparent" />
      <circle class="progress-ring__circle"
              cx="50"
              cy="50"
              :r="innerRadius"
              :stroke-width="thickness"
              stroke="blue"
              stroke-linecap="round"
              fill="transparent"
              :style="{ strokeDasharray: circumference + ' ' + circumference,
                        strokeDashoffset: circumference * (1 - (percentage / 100)),
                      }" />
    </svg>
    <div class="progress-ring__text">{{ percentage.toFixed(0) }}%</div>
  </div>
</template>
 
<script>
export default {
  props: {
    size: {
      type: Number,
      default: 1
    },
    radius: {
      type: Number,
      default: 100
    },
    thickness: {
      type: Number,
      default: 8
    },
    percentage: {
      type: Number,
      required: true,
      validator: value => value >= 0 && value <= 100
    }
  },
  computed: {
    innerRadius() {
      return this.radius / (2 * this.size) - this.thickness / 2;
    },
    circumference() {
      return 2 * Math.PI * this.innerRadius;
    }
  }
};
</script>
 
<style scoped>
.progress-ring {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
 
.progress-ring__circle {
  transform-origin: center;
  transition: all 0.2s ease-in-out;
}
 
.progress-ring__text {
  position: absolute;
  text-align: center;
  line-height: 100px;
  width: 100%;
  font-size: 20px;
  font-weight: bold;
}
</style>

在这个组件中,size 控制环形进度条的大小,radius 控制圆的半径,thickness 控制环形的厚度,percentage 是要显示的百分比。计算属性 innerRadiuscircumference 被用于计算内圆半径和圆周长。

要使用这个组件,可以在父组件中这样使用:




<template>
  <div>
    <progress-ring :percentage="50" />
  </div>
</template>
 
<script>
import ProgressRing from './Progr
VUE
最后修改于:2024年08月20日 14:34

评论已关闭

推荐阅读

DDPG 模型解析,附Pytorch完整代码
2024年11月24日
DQN 模型解析,附Pytorch完整代码
2024年11月24日
AIGC实战——Transformer模型
2024年12月01日
Socket TCP 和 UDP 编程基础(Python)
2024年11月30日
python , tcp , udp
如何使用 ChatGPT 进行学术润色?你需要这些指令
2024年12月01日
AI
最新 Python 调用 OpenAi 详细教程实现问答、图像合成、图像理解、语音合成、语音识别(详细教程)
2024年11月24日
ChatGPT 和 DALL·E 2 配合生成故事绘本
2024年12月01日
omegaconf,一个超强的 Python 库!
2024年11月24日
【视觉AIGC识别】误差特征、人脸伪造检测、其他类型假图检测
2024年12月01日
[超级详细]如何在深度学习训练模型过程中使用 GPU 加速
2024年11月29日
Python 物理引擎pymunk最完整教程
2024年11月27日
MediaPipe 人体姿态与手指关键点检测教程
2024年11月27日
深入了解 Taipy:Python 打造 Web 应用的全面教程
2024年11月26日
基于Transformer的时间序列预测模型
2024年11月25日
Python在金融大数据分析中的AI应用(股价分析、量化交易)实战
2024年11月25日
AIGC Gradio系列学习教程之Components
2024年12月01日
Python3 `asyncio` — 异步 I/O,事件循环和并发工具
2024年11月30日
llama-factory SFT系列教程:大模型在自定义数据集 LoRA 训练与部署
2024年12月01日
Python 多线程和多进程用法
2024年11月24日
Python socket详解,全网最全教程
2024年11月27日