-
Notifications
You must be signed in to change notification settings - Fork 0
/
bolinha_colorida.html
48 lines (31 loc) · 1014 Bytes
/
bolinha_colorida.html
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
47
48
<canvas width="600" height="400"></canvas>
<script>
var tela = document.querySelector('canvas');
var pincel = tela.getContext('2d');
pincel.fillStyle = 'black';
pincel.fillRect(0, 0, 600, 400);
var cor = ["blue", "red", "purple", "yellow", "pink"];
var trocaCor = 0
function desenhaCirculo(evento) {
var x = evento.pageX - tela.offsetLeft;
var y = evento.pageY - tela.offsetTop;
var raio = 10;
console.log(x + ',' + y);
if (evento.shiftKey) {
raio = raio + 20; // raio agora passa a valer 30!
}
pincel.fillStyle = cor[trocaCor];
pincel.beginPath();
pincel.arc(x, y, raio, 0, 2 * 3.14);
pincel.fill();
}
tela.onclick = desenhaCirculo;
function mudaCor() {
trocaCor++
if(trocaCor >= cor.length) {
trocaCor = 0;
}
return false;
}
tela.oncontextmenu = mudaCor;
</script>