-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtiro_ao_alvo.html
44 lines (30 loc) · 1002 Bytes
/
tiro_ao_alvo.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
<canvas width="600" height="400"></canvas>
<script>
var tela = document.querySelector('canvas');
var pincel = tela.getContext('2d');
pincel.fillStyle = 'lightgray';
pincel.fillRect(0, 0, 600, 400);
var raio = 10;
function desenhaCirculo(x, y, raio, cor) {
pincel.fillStyle = cor;
pincel.beginPath();
pincel.arc(x, y, raio, 0, 2 * Math.PI);
pincel.fill();
}
desenhaCirculo(300,200, raio + 20, 'red');
desenhaCirculo(300,200, raio + 10, 'white');
desenhaCirculo(300,200, raio, 'red');
function dispara(evento) {
var x = evento.pageX - tela.offsetLeft;
var y = evento.pageY - tela.offsetTop;
if (x > 300 - raio
&& x < 300 + raio
&& y > 200 - raio
&& y < 200 + raio) {
alert('Acertou');
} else{
alert("Errou :c");
}
}
tela.onclick = dispara;
</script>