【vue】基于vue框架的圆形进度条ProgressBar

  • Post author:
  • Post category:vue


最近在做一个移动端的项目,使用了京东开发的UI框架NutUI,官网地址:

http://nutui.jd.com/#/index

,统一的京东式电商风格,组件丰富度一般,没有Grid,没有Panel,写一些基础样式还是可以的,但是bug挺多的,没耐心的建议谨慎入坑。

有一个需求展示模型得分,当时决定用圆形进度条来表现,官网给的demo如下:

但是在本地开发中,浏览器进行模拟调试的时候,显示一切正常,在手机上调试的时候,图中的进度条(红色部分)就显示不出来了,原先还考虑过是不是前端代码对于color渲染格式有要求,后来用手机端直接访问NutUI的官方demo发现也无法正常显示,如下图使用电脑端和移动端同时访问

http://nutui.jd.com/demo.html#/circleprogress

的效果,可以确定这是

官方bug

缘于强迫症,不想换别的展示方式,还是想以这种圆形进度条的形式来展现,因此找了一些基于vue的圆形进度条插件。


https://segmentfault.com/a/1190000022330841?utm_source=sf-related


https://segmentfault.com/a/1190000016591047


https://github.com/qddegtya/v-circle

(这个插件有bug,目前问题没找到原因,里层的进度条对不齐,看着很难受)


下面以

https://github.com/dreambo8563/easy-circular-progress

为例,简单复现一下

– 安装 – (可以用cnpm代替,使用淘宝镜像下载速度更快)

npm install easy-circular-progress --save

– 使用 – App.vue

<template>
  <div id="app">
    <!--     <router-view/>-->
    <Progress value="16.88"></Progress>
    <Progress strokeColor="#FF00AA" value="16.88">
      <template v-slot:footer>
        <b>More Color</b>
      </template>
    </Progress>
    <Progress :radius="50" :strokeWidth="10" value="86.12">
      <template v-slot:footer>
        <b>Bolder & Bigger One</b>
      </template>
    </Progress>
    <Progress :transitionDuration="5000" :radius="50" :strokeWidth="10" value="86.12">
      <template v-slot:footer>
        <b>Slow One</b>
      </template>
    </Progress>
    <Progress :transitionDuration="5000" :radius="55" :strokeWidth="10" value="86.12567">
      <template v-slot:footer>
        <b>More Precise</b>
      </template>
    </Progress>
    <Progress :transitionDuration="5000" :radius="55" :strokeWidth="10" value="86.12567">
      <div class="content">hello</div>
      <template v-slot:footer>
        <b>More Precise</b>
      </template>
    </Progress>
  </div>
</template>
<script>
  import Progress from 'easy-circular-progress/src/index'

  export default {
    name: 'app',
    components: {
      Progress
    }
  }
</script>
<style lang="scss">
  #app {
    font-family: "Avenir", Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    height: 100vh;
    color: #fff;
    background: #3e423a;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  body {
    margin: 0;
    padding: 0;
  }
</style>

最终效果



版权声明:本文为coralime原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。