zoukankan      html  css  js  c++  java
  • 使用canvas画一个八卦图

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>八卦图</title>
        <style>
            * {
                padding: 0;
                margin: 0;
            }
            body {
                text-align: center;
            }
            #myCanvas {
                background-color: #eee;
            }
        </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>
  • 相关阅读:
    操作系统上机实验
    选择排序
    插入排序(c++)
    嵌入式原理实验代码集合
    iOS应用程序生命周期(前后台切换,应用的各种状态)详解
    ios Base64编解码工具类及使用
    iOS:横向使用iPhone默认的翻页效果
    ios学习笔记之内存管理
    ios NavBar+TarBar技巧
    IOS设备滑动事件
  • 原文地址:https://www.cnblogs.com/lyl-0667/p/11241113.html
Copyright © 2011-2022 走看看