封装环形加载进度条(Vue插件版和原生js版)

1、效果预览

在这里插入图片描述

2、用到的知识

主要利用SVGstroke-dasharraystroke-dashoffset这两个属性。
在看下面文章之前,你需要了解

<!DOCTYPE html>
<html>
<head>
	<title>svg demo</title>
	<style type="text/css">
		#line{
			transition: all 2s;
			stroke-dasharray:300,320;
			stroke-dashoffset:300;
		}
		svg:hover #line{
			stroke-dashoffset: 0;
		}
		
		#circle{
			transition: all 2s;
			stroke-dasharray:314,314;
			stroke-dashoffset:314;
		}
		svg:hover #circle{
			stroke-dashoffset:0;
		}
	</style>
</head>
<body>

<h3>线段区域</h3>
<svg width="100%" height="40" >
   <line id="line" x1="30" y1="30" x2="300" y2="30" stroke-width="20" stroke="red" />
</svg>	
<h3>圆区域</h3>

<svg  width="200" height="200" viewBox="0 0 200 200">
   <circle id="circle" cx="100" cy="80" r="50"  fill="gray" stroke-width="5" stroke="green" />
</svg>

</body>
</html>

3、使用

有两种方式,一种是直接安装即可使用,一种需要封装。选一种适合自己的即可。

(1)、安装插件

安装Vue插件
npm install loading-vue-component
使用
// main.js
import loading from 'loading-vue-component'
Vue.use(loading)
// app.vue
<template>
  <div id="app">
      <loading :radius="20" :progress="progress" :stroke="2" :color='color'></loading>
  </div>
</template>
 
<script>
export default {
  name: 'app',
  data() {
    return { progress: 0,color:'#1989fa'}
  }
}
</script> 

(2)、封装插件

Vue版
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>loading</title>
    <style>
    html,
    body {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        position: relative;
        margin: 0;
        padding: 0;
    }
    circle {
        transition: stroke-dashoffset 0.15s;
        transform: rotate(-90deg);
        transform-origin: 50% 50%;
    }
    .txt{
		font-size: 14px;
		text-align: center;
    }
    .loading{
    	padding:40vh;
    }
    </style>
</head>

<body>
    <div id="example"></div>
</body>
<script src="https://unpkg.com/vue@2.6.10/dist/vue.js"></script>
<script>
// 子组件
const Loading = Vue.component('Loading', {
    props: {
        radius: Number,
        progress: Number,
        stroke: Number,
        color:String
    },
    data() {
        const progressed = this.progress;
    	const colored = this.color
        const normalizedRadius = this.radius - this.stroke * 2; // 净半径,总半径-2*路径宽
        const circumference = normalizedRadius * 2 * Math.PI; // 周长,2πd
        return {
            normalizedRadius,
            circumference,
            progressed,
            colored
        };
    },
    mounted() {
        // emulating progress
        const interval = setInterval(() => {
            this.progressed += 25;
            if (this.progressed > 101) {
                this.colored='white'
            }
            this.colored='#1989fa'
        }, 150);
    },
    computed: {
        strokeDashoffset() {
            return this.circumference - this.progressed / 100 * this.circumference;
        }
    },
    template: `
    <div class='loading'>
	<svg
      :height="radius * 2"
      :width="radius * 2"
     >
       <circle
         :stroke="color"
         :stroke-dasharray="circumference + ' ' + circumference"
         :style="{ strokeDashoffset: strokeDashoffset }"
         :stroke-width="stroke"
         fill="transparent"
         :r="normalizedRadius"
         :cx="radius"
         :cy="radius"
      />
    </svg>
     <p class='txt'>加载中</p>
    </div>
  `
});
// 父组件
new Vue({
    el: '#example',
    components: {
        'Loading': Loading
    },
    data() {
        return { progress: 0,color:'#1989fa',show:true}
    },
    mounted () {
    	setTimeout(() => {
    		this.show = false
    	},3000)
    },
    template: `
    <div>
      <Loading :radius="20" :progress="progress" :stroke="2" :color='color' v-show='show'></Loading>
    </div>
  `
});
</script>

</html>
原生js版
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>progress</title>
    <style>
        html, body {
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}
.progress-ring__circle {
  transition: 0.35s stroke-dashoffset;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

input {
  position: fixed;
  top: 10px;
  left: 10px;
  width: 80px;
}
	</style>
</head>

<body>
    <svg class="progress-ring" width="120" height="120">
        <circle class="progress-ring__circle" stroke="white" stroke-width="4" fill="transparent" r="52" cx="60" cy="60" />
    </svg>
    <input value="35" type="number" step="5" min="0" max="100" placeholder="progress">
</body>
<script type="text/javascript">
var circle = document.querySelector('circle');
var radius = circle.r.baseVal.value;
var circumference = radius * 2 * Math.PI;

circle.style.strokeDasharray = `${circumference} ${circumference}`;
circle.style.strokeDashoffset = `${circumference}`;

function setProgress(percent) {
    const offset = circumference - percent / 100 * circumference;
    circle.style.strokeDashoffset = offset;
}

const input = document.querySelector('input');
setProgress(input.value);

input.addEventListener('change', function(e) {
    if (input.value < 101 && input.value > -1) {
        setProgress(input.value);
    }
})
</script>

</html>
  • 5
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 3
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Vam的金豆之路

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值