vue vue3 实现滚动进度条,斑马纹进度条

简介: vue vue3 实现滚动进度条,斑马纹进度条

vue实现进度条


效果如下


20210107155342363.png


使用方法


 <div style="width: 400px;text-align: center; margin: 0 auto">
      <my-process :show-txt="true" txt="50%完成" :pcs-height="20" process-dept="50"/>
      <my-process :pcs-height="20" process-dept="50" bg-color="#f40"/>
      <my-process :pcs-height="20" process-dept="100" bg-color="#409EFF" :show-striped="true"/>
      <my-process :pcs-height="20" process-dept="100" bg-color="#F56C6C" :show-striped="true" :show-act="true"/>
      <my-process :brd-rs="10" :pcs-height="20" process-dept="100" bg-color="#E6A23C" :show-striped="true" :show-act="true"/>
    </div>


组件代码:


<template>
  <div class="progress"
       :style="{
        borderRadius: brdRs + 'px',
        height: pcsHeight + 'px',
       }"
  >
    <div class="progress-bar"
         :class="{
        'progress-bar-striped': showStriped ,
         'progress-bar-active':showAct ,
        }"
         :style="{
           width: processDept + '%',
           backgroundColor: bgColor,
           color: txtColor
         }">
      <span :class="{showTxt: 'hidden-txt'}">{{ txt }}</span>
    </div>
  </div>
</template>
<script>
/**
 * 判断传入的字符串是否为一个颜色
 * @param str {String} 颜色
 * @returns {boolean} 结果
 */
export function testColor(str) {
    const reg = new RegExp('^#([0-9a-fA-F]{6}|[0-9a-fA-F]{3})$');
    return reg.test(str);
}
export default {
  name: "myProcess",
  props: {
    // 背景颜色
    bgColor: {
      type: String,
      validator: value => {
        return testColor(value)
      },
      default: '#337ab7'
    },
    // 文本颜色
    txtColor: {
      type: String,
      validator: value => {
        return testColor(value)
      },
      default: '#fff'
    },
    showTxt: Boolean,  //是否展示文本
    showStriped: Boolean, // 是否需要斑马纹
    showAct: Boolean, // 是否运动
    // 圆角大小
    brdRs: {
      type: Number,
      validator: value => {
        return value >= 0 && value <= 20
      },
      default: 4
    },
    txt: String, // 文本内容
    // 进度条的深度
    processDept: {
      type: Number,
      validator: value => value >= 0 && value <= 100,
      default: 30
    },
    // 进度条的高度
    pcsHeight: {
      type: Number,
      default: 10,
    }
  },
}
</script>
<style lang="scss" scoped>
.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  &-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #337ab7;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease;
    &-striped {
      background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
      background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
      background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
      -webkit-background-size: 40px 40px;
      background-size: 40px 40px;
    }
    &-active {
      -webkit-animation: progress-bar-stripes 2s linear infinite;
      -o-animation: progress-bar-stripes 2s linear infinite;
      animation: progress-bar-stripes 2s linear infinite;
    }
    .hidden-txt {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      border: 0;
    }
  }
}
// WebKit
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: -40px 0;
  }
  to {
    background-position: 0 0;
  }
}
</style>


相关文章
|
2天前
|
JavaScript 前端开发
Vue项目使用px2rem
Vue项目使用px2rem
|
2天前
|
JavaScript 调度
Vue3 使用 Event Bus
Vue3 使用 Event Bus
9 1
|
2天前
|
JavaScript
Vue3 : ref 与 reactive
Vue3 : ref 与 reactive
8 1
|
2天前
|
JavaScript
Vue组件传值异步问题--子组件拿到数据较慢
Vue组件传值异步问题--子组件拿到数据较慢
7 0
|
2天前
Vue3 使用mapState
Vue3 使用mapState
7 0
|
2天前
|
缓存 JavaScript
Vue中的keep-alive是什么意思?以及如何使用
Vue中的keep-alive是什么意思?以及如何使用
|
6天前
|
JavaScript
vue学习(3)模板语法
vue学习(3)模板语法
36 11
|
6天前
|
存储 JavaScript 前端开发
vue学习(2)
vue学习(2)
195 65
|
6天前
|
JavaScript 算法 前端开发
vue学习(1)
vue学习(1)
194 62
|
5天前
|
JavaScript
vue学习(4)数据绑定
vue学习(4)数据绑定
19 10