玉珏图

Circle/index.vue

<template>
    <div class="canvas-wrapper">
        <canvas class="canvas" :id="id" :width="width" :height="height" style="width:100%;height:100%;"></canvas>
    </div>
</template>

<script>
//玉珏图
export default {
    name: 'canvasCircle',
    data() {
        return {}
    },
    /*
      params对象
      @id: 画布id
      @width: 画布宽
      @height: 画布高
      @percente: 圆环百分比, 范围[0, 100]
      @radius: 半径
      @lineWidth: 环宽
      @innerColor: 内圈范围值颜色
      @outerColor: 外圈范围值颜色
      @text: 显示文字
      @textColor: 文字颜色
    */
    props: {
        params: {
            type: Object,
            required: true
        },
        id: {
            type: String,
            required: true
        },
        width: {
            type: Number,
            default: 200
        },
        height: {
            type: Number,
            default: 200
        }
    },
    mounted() {
        this.initDraw()
    },
    methods: {
        // 初始化数据
        initDraw() {
            this.canvas = document.getElementById(this.params.id)
            this.context = this.canvas.getContext('2d')
            this.centerX = this.canvas.width / 2-5
            this.centerY = this.canvas.height / 2
            this.percente = this.params.percente
            this.innerColor = this.params.innerColor
            this.outerColor = this.params.outerColor
            this.width = this.canvas.width
            this.height = this.canvas.height
            this.radius = this.params.radius
            this.lineWidth = this.params.lineWidth
            this.text = this.params.text
            this.textColor = this.params.textColor
            this.speed = 0
            window.requestAnimationFrame(this.drawMain)
        },
        // 开始绘制
        drawMain() {
            this.context.clearRect(0, 0, this.canvas.width, this.canvas.height)
            this.backgroundCircle()
            this.drawPoint()
            this.drawText()
            this.foregroundCircle(this.speed)
            if (this.speed < this.percente) {
                this.speed += 1
                window.requestAnimationFrame(this.drawMain)
            }
        },
        // 绘制背景圆圈
        backgroundCircle() {
            this.context.save() // save和restore可以保证样式属性只运用于该段canvas元素
            this.context.beginPath()
            this.context.lineWidth = this.lineWidth // 设置线宽
            this.context.lineCap = 'round' // 圆环末端类型 [可填] 默认:butt (平滑);round (圆形线帽)
            this.context.strokeStyle = this.outerColor
            this.context.arc(this.centerX, this.centerY, this.radius, 1.5 * Math.PI, 0 * Math.PI, true)
            // 用于绘制圆弧this.context.arc(x坐标,y坐标,半径,起始角度,终止角度,顺时针/逆时针)
            this.context.stroke()
            this.context.closePath()
            this.context.restore()
        },
        // 绘制进度圆环
        foregroundCircle(n) {
            this.context.save()
            this.context.strokeStyle = this.innerColor
            this.context.lineWidth = this.lineWidth
            this.context.lineCap = 'round'
            this.context.beginPath()
            this.context.arc(this.centerX, this.centerY, this.radius, 1.5 * Math.PI, Math.PI * (1.5 - n * 1.5 / 100), true)
            this.context.stroke()
            this.context.closePath()
            this.context.restore()
        },
        // 绘制文字前的点
        drawPoint() {
            this.context.save()
            this.context.beginPath()
            this.context.arc(this.centerX + 10, this.centerY - this.radius - this.lineWidth / 2 + this.lineWidth / 2, this.lineWidth / 2, Math.PI * 2, 0, false)
            this.context.fillStyle = this.innerColor
            this.context.fill()
            this.context.closePath()
            this.context.restore()
        },
        // 绘制文字
        drawText() {
            this.context.save()
            this.context.fillStyle = this.textColor
            let fontSize = 16
            this.context.font = fontSize + 'px Helvetica'
            // let textWidth = this.context.measureText(n + '%').width
            this.context.fillText(this.text, this.centerX + 25, this.centerY - this.radius - this.lineWidth / 2 + fontSize / 2)
            this.context.restore()
        }
    }
}
</script>

<style scoped>
.canvas-wrapper {
    width: 100%;
    height: 100%;
}
</style>

使用

//html
<div  style="position: relative;">
  <canvas-circle class="canvasCircle" v-for="item in circleData" :params="item" :width="item.width" :height="item.height" :id="item.id"></canvas-circle>
</div>

//js
import canvasCircle from '@/components/Circle/index'

components: { canvasCircle },

let circleData=[]
data.forEach((item, index) => {
    circleData.push({
        id: 'circle'+index,
        width: 200,
        height: 200,
        percente: 90 - index *30,
        radius: 30 + index * 30,
        lineWidth: 5,
        text: item.name + ' ' + item.value,
        outerColor: this.colorList[index],
        innerColor: this.colorList[index],
        textColor: this.colorList[index]
     })
});
this.circleData = circleData

//css
.canvasCircle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-top:2vh;
    width: 36vh;
    height: 36vh;
    padding: 10px;
}

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值