<html>
<head>
<title>初识canvas</title>
</head>
<body>
<canvas id="mc" width="400px" height="200px" style="border:1px solid #c3c3c3;">
</canvas>
<script type="text/javascript">
var canvas = document.getElementById('mc');
var ctx = canvas.getContext('2d');
ctx.lineWidth = 5;//设置圆的宽度
ctx.strokeStyle = "#163B62";//设置第一个圆的颜色
ctx.beginPath();
ctx.arc(70,70,40,0,Math.PI*2,true);
ctx.stroke();
ctx.strokeStyle = "#000000";<span style="font-family: Arial, Helvetica, sans-serif;">//设置第二个圆的颜色</span>
ctx.beginPath();
ctx.arc(160,70,40,0,Math.PI*2,true);
ctx.stroke();
ctx.strokeStyle = "#BF0628";
ctx.beginPath();
ctx.arc(250,70,40,0,Math.PI*2,true);
ctx.stroke();
ctx.strokeStyle = "#EBC4
第一讲:使用html5——canvas绘制奥运五环
最新推荐文章于 2021-11-16 07:43:58 发布
本教程详细讲解如何使用HTML5的Canvas API来绘制奥运五环。通过实例步骤,学习者可以掌握Canvas的基本绘图操作,实现动态的五环展示效果。
摘要由CSDN通过智能技术生成