zoukankan      html  css  js  c++  java
  • 八卦图

    <!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>Document</title>
        <style>
        #myCanvas{
            border: 1px solid black;
            background: beige;
        }
        </style>
    </head>
    <body>
        <canvas id="myCanvas" width="600" height="600"></canvas>
        <script>
        //获取到画布元素
        let  myCanvas=document.getElementById('myCanvas');
        //通过画布元素获取到上下文(画笔)
        let ctx=myCanvas.getContext("2d");

        //右边白色的半圆
        ctx.fillStyle= "#fff";
        ctx.beginPath();
        ctx.arc(300,300,100,(Math.PI/180)*270,(Math.PI/180)*90);
        ctx.fill();
        //左边黑色的圆
        ctx.fillStyle="#000";
        ctx.beginPath();
        ctx.arc(300,300,100,(Math.PI/180)*270,(Math.PI/180)*90,true);
        ctx.fill();
        //左边白色的小圆
        ctx.fillStyle="#fff";
        ctx.beginPath();
        ctx.arc(300,250,50,(Math.PI/180)*270,(Math.PI/180)*90,true);
        ctx.fill();
        //右边黑色的小圆
        ctx.fillStyle="#000";
        ctx.beginPath();
        ctx.arc(300,350,50,(Math.PI/180)*270,(Math.PI/180)*90);
        ctx.fill();
        //黑色的小圆点
        ctx.fillStyle="#000";
        ctx.beginPath();
        ctx.arc(300,250,5,0,Math.PI*2);
        ctx.fill();
        //白色的小圆点
        ctx.fillStyle="#fff";
        ctx.beginPath();
        ctx.arc(300,350,5,0,Math.PI*2);
        ctx.fill();
        </script>
    </body>
    </html>
  • 相关阅读:
    #575. 「LibreOJ NOI Round #2」不等关系
    P4494 [HAOI2018]反色游戏
    P6378 [PA2010] Riddle
    子集卷积
    躯壳
    C++11、14、17里的lambda表达式简介
    数据结构与算法复习——7、斐波那契堆和配对堆
    数据结构与算法复习——6、二项队列及其分析
    数据结构与算法复习——5、摊还分析入门
    高等代数(二)预习——4、唯一因式分解定理
  • 原文地址:https://www.cnblogs.com/qilin0/p/11570068.html
Copyright © 2011-2022 走看看