html5 canvas 原生 javascript 实现 饼状图实例 加介绍

图片

重点

 

  • //一数据开始结束角度
  • ctx.arc(100, 100, 50, Math.PI * 1.5, Math.PI * 1.5 - Math.PI * 2 * 60 / 100, true);
  • //2数据开始结束角度
  • ctx.arc(100, 100, 50, Math.PI * 1.5 - Math.PI * 2 * 60 / 100, Math.PI * 1.5 - Math.PI * 2 * 70 / 100, true);
  • //3数据开始结束角度
  • ctx.arc(100, 100, 50, Math.PI * 1.5 - Math.PI * 2 * 70 / 100, Math.PI * 1.5 - Math.PI * 2 * 100 / 100, true);
  • 后值不变,前值累加
  • x,y,半径,开始角度,结束角度,true 逆时针

上代码

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

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>test1</title>
</head>
<style>
    body {
        background: #000;
        margin: 0px;
        padding: 0px;
    }

    #main {
        position: absolute;
        width: 200px;
        height: 200px;
    }
</style>

<body>
    <div id="main"></div>

</body>

<script>
    var por = {
        init: function () {
            var main = document.getElementById("main");
            //渲染上来一个canvas 多个canvas 的时候注意 id 防止重复
            main.innerHTML = '<canvas id="canvasmain"  width="' + main.offsetWidth + '" height="' + main.offsetHeight + '"></canvas>';
            var vmain = document.getElementById("canvasmain");
            var c = document.getElementById("canvasmain");
            var ctx = c.getContext("2d");

            //底图可要可不要
            ctx.beginPath();
            ctx.moveTo(100, 100);
            ctx.arc(100, 100, 30, 0,Math.PI * 1.5, false);
            ctx.closePath();
            ctx.fillStyle = "#fff";
            ctx.fill();

            //逆时针 扇形图
            // ctx.beginPath();
            // ctx.moveTo(100, 100);
            // ctx.arc(100, 100, 30, Math.PI * 1.5, Math.PI * 1.5 - Math.PI * 2 * 60 / 100, true);
            // ctx.closePath();
            // ctx.fillStyle = "#bbb";
            // ctx.fill();

            //顺时针一号内容
            ctx.beginPath();
            ctx.moveTo(100, 100);
            ctx.arc(100, 100, 50, Math.PI * 1.5, Math.PI * 1.5 - Math.PI * 2 *  60 / 100, true);
            ctx.closePath();
            ctx.fillStyle = "#ddd";
            ctx.fill();

            //顺时针2号内容
            ctx.beginPath();
            ctx.moveTo(100, 100);
            ctx.arc(100, 100, 50, Math.PI * 1.5 - Math.PI * 2 *  60 / 100, Math.PI * 1.5 - Math.PI * 2 *  70 / 100, true);
            ctx.closePath();
            ctx.fillStyle = "#090765";
            ctx.fill();

             //顺时针3号内容
             ctx.beginPath();
            ctx.moveTo(100, 100);
            ctx.arc(100, 100, 50,  Math.PI * 1.5 - Math.PI * 2 *  70 / 100, Math.PI * 1.5 - Math.PI * 2 *  100 / 100,  true);
            ctx.closePath();
            ctx.fillStyle = "#098765";
            ctx.fill();

         }
    };
    por.init();
     

</script>

</html>

 

 

 

 

持续根系

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值