vue环形进度条组件实例应用
程序员文章站
2024-01-01 19:18:22
在做项目的时候,最好只使用一套组件库,但是很多时候我们的组件库里面没有我们需要的组件,这个时候我们还是需要自己写组件了,vux里面就没有环形进度条组件,所以需要自己写一个。...
在做项目的时候,最好只使用一套组件库,但是很多时候我们的组件库里面没有我们需要的组件,这个时候我们还是需要自己写组件了,vux里面就没有环形进度条组件,所以需要自己写一个。
查找资料后发现了一个很好的实现方式,通过svg来实现,以前的时候学过一点svg但是没有怎么深入了解过。。。现在看来真是罪过,给出参考链接
可以看出原作者使用了两种方式,我们选择了第二种,简单,而且好扩展。可以看到svg就想是canvas一样进行绘图。原文已经讲得很详细了,这里就附上自己写的组件吧。伸手党们也能愉快一点。
<template> <svg :height="option.size" :width="option.size" x-mlns="http://www.w3.org/200/svg"> <circle :r="option.radius" :cx="option.cx" :cy="option.cy" :stroke="option.outercolor" :stroke-width="option.strokewidth" fill="none" stroke-linecap="round"/> <circle id="progressround" :stroke-dasharray="completenesshandle" :r="option.radius" :cx="option.cx" :cy="option.cy" :stroke-width="option.strokewidth" :stroke="option.innercolor" fill="none" class="progressround" /> </svg> </template> <script> export default { name: 'commonloopprogress', props: { completeness: { type: number, required: true, }, progressoption: { type: object, default: () => {}, }, }, data () { return { } }, computed: { completenesshandle () { let circlelength = math.floor(2 * math.pi * this.option.radius) let completenesslength = this.completeness * circlelength return `${completenesslength},100000000` }, option () { // 所有进度条的可配置项 let baseoption = { radius: 20, strokewidth: 5, outercolor: '#e6e6e6', innercolor: '#ffde00', } object.assign(baseoption, this.progressoption) // 中心位置自动生成 baseoption.cy = baseoption.cx = baseoption.radius + baseoption.strokewidth baseoption.size = (baseoption.radius + baseoption.strokewidth) * 2 return baseoption }, }, } </script> <style scoped lang='stylus'> @import '~stylus/_variables.styl'; @import '~stylus/_mixins.styl'; .progressround { transform-origin: center; transform: rotate(-90deg); transition: stroke-dasharray 0.3s ease-in; } </style>
修改了原文中的一些不好的命名方式,并且让我们的组件方便配置,可以*一点。
以上就是本次知识点的全部内容,感谢大家对的支持。