如何使用控制canvas内画出的图形做出以下功能?
发布网友
发布时间:2022-04-24 14:31
我来回答
共1个回答
热心网友
时间:2022-04-14 22:01
颜色真难弄 没找到规律 你研究下吧
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE HTML>
<html>
<style>
#myCanvas{
width: 400px;
height: 200px;
}
</style>
<body>
<canvas id="myCanvas">your browser does not support the canvas tag </canvas>
<script type="text/javascript">
var canvas=document.getElementById('myCanvas');
var c=canvas.getContext('2d');
//红色
c.fillStyle='#f00';
c.fillRect(0,0,10,10);
c.fillStyle='#f22';
c.fillRect(0,12,10,10);
c.fillStyle='#f44';
c.fillRect(0,24,10,10);
c.fillStyle='#f88';
c.fillRect(0,36,10,10);
c.fillStyle='#faa';
c.fillRect(0,48,10,10);
c.fillStyle='#fcc';
c.fillRect(0,60,10,10)追问什么跟什么?!!你随便贴段代码是几个意思?风马牛不相及乎。