时间:2021-05-18
本文实例为大家分享了环形加载进度条封装代码,供大家参考,具体内容如下
1、效果预览
2、用到的知识
主要利用SVG的stroke-dasharray和stroke-dashoffset这两个属性。
在看下面文章之前,你需要了解
3、使用
有两种方式,一种是直接安装即可使用,一种需要封装。选一种适合自己的即可。
(1)、安装插件
安装Vue插件
npm install loading-vue-component使用
// main.jsimport 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>以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
NProgress.js提供页面加载进度条效果,当页面打开加载时,在页面顶部会出现进度条加载动画。NProgress.js是轻量级的进度条组件,使用简便,可以很
本文实例为大家分享了微信小程序实现环形进度条的具体代码,供大家参考,具体内容如下微信小程序自定义组件官方教程环形进度条的组件已经放在github上环形进度条效果
复制代码代码如下:/**********************js蒙版进度条(图片)**dingzh@jstrd.com**2009-12-03*******
静态效果的实现网页顶部加载进度条,近年来很流行,很多网站都采用了这种加载方式。网上也有这样类似的插件,今天我们总结一下网页顶部线性页面加载进度条。大体的写法如下
项目需求:1.PHP+Ajax无刷新带进度条图片上传,2.带进度条。所需插件:jquery.js,jquery.form.js。最近在做一个手机web项目,需要