H5 Svg 半圆圆环占比图

2 篇文章 0 订阅

效果图
在这里插入图片描述
主逻辑

/* 虚线长度 */
stroke-dasharray  
/* 偏移 */
stroke-dashoffset 

代码

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

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="./assets/global.css">

    <style>
        .circle-progress-bar {
            --width: 300px;
            --stroke-width: 12px;
            --height: calc((var(--width) + var(--stroke-width)) / 2);
            width: var(--width);
            height: var(--height);

            overflow: hidden;
            position: relative;
        }

        .circle-progress-bar .circle-progress-text {
            font-size: 30px;
            position: absolute;
            bottom: 0px;
            width: 100%;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
        }

        .circle-progress-bar .circle-progress-svg {
            width: var(--width);
            height: var(--width);
            transform: rotate(180deg);
        }

        .circle-progress-bar .circle-progress-circle {
            /* 周长 */
            stroke-dasharray: 628;
            /* 偏移 */
            stroke-dashoffset: 333;
        }
    </style>
</head>

<body>
    <div class="circle-progress-bar">
        <svg class="circle-progress-svg">
            <circle class="circle-progress-circle-back" stroke-linecap="round" cx="150" cy="150" r="144"
                fill="transparent" stroke-width="12" stroke="grey" />
            <circle class="circle-progress-circle" stroke-linecap="round" cx="150" cy="150" r="144" fill="transparent"
                stroke-width="12" stroke="grey" />
        </svg>
        <div class="circle-progress-text">60%</div>
    </div>

    <script type="module">
        let circleProgressBarDom = document.querySelector('.circle-progress-bar')               // 整体的容器
        let circleProgressCircleDom = document.querySelector('.circle-progress-circle')         // 前面弧线DOM
        let circleProgressCircleBackDom = document.querySelector('.circle-progress-circle-back')// 后面弧线DOM
        let circleProgressTextDom = document.querySelector('.circle-progress-text')             // 文字DOM
        let width = 200;                            // 盒子宽度
        let strokeWidth = 20                        // 线宽
        let r = width / 2 - strokeWidth / 2         // 半径
        let perimeter = (r * 2 * Math.PI).toFixed(0)// 周长
        let ratio = .66;                            // 占比 小数
        let backgroundColor = 'rgb(168, 168, 168)'  // 后面弧线的颜色
        let color = 'rgb(255, 181, 54)'             // 前面弧线的颜色

        // 设置宽度、线宽
        circleProgressBarDom.setAttribute('style', `--width: ${width}px; --stroke-width: ${strokeWidth}px`)
        // 设置中心点、半径、线宽、占比、颜色
        circleProgressCircleBackDom.setAttribute('cx', width / 2)
        circleProgressCircleBackDom.setAttribute('cy', width / 2)
        circleProgressCircleBackDom.setAttribute('r', r)
        circleProgressCircleBackDom.setAttribute('stroke-width', strokeWidth)
        circleProgressCircleBackDom.setAttribute('style', `stroke-dasharray: ${perimeter};stroke-dashoffset: ${perimeter / 2 * 0 + perimeter / 2}`)
        circleProgressCircleBackDom.setAttribute('stroke', backgroundColor)
        // 设置中心点、半径、线宽、占比、颜色
        circleProgressCircleDom.setAttribute('cx', width / 2)
        circleProgressCircleDom.setAttribute('cy', width / 2)
        circleProgressCircleDom.setAttribute('r', r)
        circleProgressCircleDom.setAttribute('stroke-width', strokeWidth)
        circleProgressCircleDom.setAttribute('style', `stroke-dasharray: ${perimeter};stroke-dashoffset: ${perimeter / 2 * (1 - ratio) + perimeter / 2}`)
        circleProgressCircleDom.setAttribute('stroke', color)
        // 设置文字
        circleProgressTextDom.textContent = ratio * 100 + '%'

    </script>

</body>

</html>

在线预览
https://linyisonger.github.io/H5.Examples/
源码仓库
https://github.com/linyisonger/H5.Examples.git

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

林一怂儿

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

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

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

打赏作者

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

抵扣说明:

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

余额充值