在vue中写进度条

一、效果图
在这里插入图片描述
二、实现代码
progress值,代表百分百的进度

<template>
  <section>
    <div class="box">
    <div class="mo" :style="{'--progress':-progress+100+'%'}"></div>
    <div class="line-box">
      <i></i>
      <i class="line-item"></i>
      <i class="line-item"></i>
      <i class="line-item"></i>
      <i></i>
    </div>
  </div>
  <el-input-number v-model="progress" :step="10"></el-input-number>
  </section>
</template>

<script>
  export default {
    data() {
      return {
        progress:58
      }
    }
  }

</script>

<style scoped>

  .box {
    position: relative;
    width: 500px;
    height: 20px;
    overflow: hidden;
    background: linear-gradient(270deg, #FF4D4D 0%, #FADB6D 55.73%, #70FAC8 100%);
  }

  .mo {
    position: absolute;
    z-index: 1;
    right: 0;
    height: 100%;
    width: var(--progress, 0%);
    background-color: #ccc;
  }

  .line-box {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }

  .line-box .line-item {
    width: 1px;
    height: 100%;
    background-color: #fff;
  }

</style>

  • 1
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值