css画饼图

2023-12-14 15:05:24

?

<template slot-scope="scope">

? ? ? ? ? <div class="pie" :style="{'--p': scope.row.rate}" style="--p:10;--b:10px;--c:#FFAB79;">

? ? ? ? ? ? <!--

? ? ? ? ? ? ? --p:这个变量应该包含百分比值作为一个数字(不带%符号)。它应该与内容相同。

? ? ? ? ? ? ? --b:这个变量将定义边框的粗细。

? ? ? ? ? ? ? --c:这个变量将定义主要颜色。

? ? ? ? ? ? -->

? ? ? ? ? ? <!-- 60% -->

? ? ? ? ? </div>

? ? ? ? ? <!-- <el-progress

? ? ? ? ? ? type="circle"

? ? ? ? ? ? :percentage="scope.row.rate"

? ? ? ? ? ? :width="40"

? ? ? ? ? ? :show-text="false"

? ? ? ? ? ></el-progress> -->

? ? ? ? </template>

<style lang="scss" scoped>

? .pie {

? ?--w:50px;

? ?width: var(--w);

? ?aspect-ratio: 1; // aspect-ratio: 1用来确保元素保持方形

? ?position: relative;

? ?display: inline-grid;

? ?place-content: center;

? ?margin: 5px;

? ?font-size: 12px;

? ?font-weight: bold;

? ?font-family: sans-serif;

?}

?.pie:before {

? ?content: "";

? ?position: absolute;

? ?border-radius: 50%;

? ?inset: 0;

? ?background: conic-gradient(var(--c) calc(var(--p)*1%),rgba(28, 157, 255, 1) 0);

? // ?-webkit-mask:radial-gradient(farthest-side,#0000 calc(99% - var(--b)),#000 calc(100% - var(--b)));

? // ? ? ? ? ?mask:radial-gradient(farthest-side,#0000 calc(99% - var(--b)),#000 calc(100% - var(--b)));

?}

</style>

?参考文章:手把手教你使用CSS制作动态饼图(附代码)(点晴免费OA系统(国内永久免费OA协同办公管理软件)最好的官网下载)

文章来源:https://blog.csdn.net/qq_42080594/article/details/134988800
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。