zoukankan      html  css  js  c++  java
  • HTML5 Canvas 绘制太极图

    代码:

    <!DOCTYPE html>
    <html lang="utf-8">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <head>
         <title>太极图</title>
        </head>
    
         <body onload="draw()">
            <canvas id="myCanvus" width="204px" height="204px" style="border:1px dashed black;">
                出现文字表示你的浏览器不支持HTML5
            </canvas>
         </body>
    </html>
    <script type="text/javascript">
    <!--
        function draw(){
            var canvas=document.getElementById("myCanvus");
            var context=canvas.getContext("2d");
    
            context.fillStyle = "#336699";
            context.fillRect(0, 0, 204, 204);
            context.translate(102,102);
            //context.rotate(Math.PI/6);
            
            var r=100;// 半径
    
            context.beginPath(); 
            context.arc(0,0,r,0,getRad(360),false); 
            context.fillStyle="white"; 
            context.closePath(); 
            context.fill(); 
    
            context.beginPath(); 
            context.arc(0,0,r,getRad(90),getRad(270),false);
            context.fillStyle="black"; 
            context.closePath(); 
            context.fill();
    
            context.beginPath(); 
            context.arc(0,0,r,getRad(270),getRad(90),false);
            context.fillStyle="white"; 
            context.closePath(); 
            context.fill();
    
            context.beginPath(); 
            context.arc(0,-r/2,r/2,getRad(90),getRad(270),false);
            context.fillStyle="white"; 
            context.closePath(); 
            context.fill();
    
            context.beginPath(); 
            context.arc(0,r/2,r/2,getRad(270),getRad(90),false);
            context.fillStyle="black"; 
            context.closePath(); 
            context.fill();
    
            context.beginPath(); 
            context.arc(0,-r/2,r/8,getRad(0),getRad(360),false);
            context.fillStyle="black"; 
            context.closePath(); 
            context.fill();
    
            context.beginPath(); 
            context.arc(0,r/2,r/8,getRad(0),getRad(360),false);
            context.fillStyle="white"; 
            context.closePath(); 
            context.fill();
        }
    
        function getRad(degree){
            return degree/180*Math.PI;
        }
    //-->
    </script>
  • 相关阅读:
    python机器学习系列之环境搭建
    github 出现 Permission denied (publickey)的解决
    Eclipse添加Web和java EE插件
    GNU Make 学习系列一:怎样写一个简单的Makefile
    GTK+编程概述
    SpringBoot导出excel数据报错Could not find acceptable representation
    Postman测试上传MultipartFile文件
    idea 代码没有被svn控制
    FPGA基础学习(1) -- FFT IP核(Quartus)
    markdown使用小结
  • 原文地址:https://www.cnblogs.com/heyang78/p/7469836.html
Copyright © 2011-2022 走看看