<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Bolinha Emagrece</title>
</head>
<body>
<canvas id="canvas" width="600" height="400"></canvas>
<script type="text/javascript">
var tela = document.querySelector('canvas');
var pincel = tela.getContext('2d');
cores = ['blue', 'red', 'green'];
i = 0;
pincel.fillStyle = 'grey';
pincel.fillRect (0,0,600,400);
var raio = 10;
function desenhaBolinha (evento){
var x = evento.pageX - tela.offsetLeft;
var y = evento.pageY - tela.offsetTop;
if (raio <= 40){
if(evento.shiftKey){
raio = raio + 10;
}
if(evento.altKey){
raio = raio - 5;
}
pincel.fillStyle = cores[i];
pincel.beginPath();
pincel.arc(x, y, raio, 0, 2 * 3.14);
pincel.fill();
console.log(x + ', ' + y);
}else{
alert("Bola atingiu tamanho maximo");
raio = 10;
}
}
function mudaCor(){
raio = 10;
i++;
if (i >= cores.length) {
i = 0;
}
return false;
}
tela.oncontextmenu = mudaCor;
tela.onclick = desenhaBolinha;
</script>
</body>
</html>