-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshift2.html
40 lines (24 loc) · 883 Bytes
/
shift2.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
<canvas width="600" height="400"></canvas>
<script>
var tela = document.querySelector('canvas');
var pincel = tela.getContext('2d');
pincel.fillStyle = 'grey';
pincel.fillRect(0, 0, 600, 400);
var raio = 10;
function desenhaCirculo(evento) {
var x = evento.pageX - tela.offsetLeft;
var y = evento.pageY - tela.offsetTop;
if (evento.shiftKey && evento.altKey) {
alert('Só aperte uma tecla por vez, por favor!');
} else if(evento.shiftKey && raio + 10 <= 40) {
raio = raio + 10;
} else if(evento.altKey && raio - 5 >= 10) {
raio = raio - 5;
}
pincel.fillStyle = 'blue';
pincel.beginPath();
pincel.arc(x, y, raio, 0, 2 * 3.14);
pincel.fill();
}
tela.onclick = desenhaCirculo;
</script>