Segue os códigos da aula1
Exemplo1
<!DOCTYPE html>
<html>
<head>
<title>Retângulo</title>
</head>
<body>
<canvas id="meu_canvas" width="200" height="200"></canvas>
<script>
// Canvas e contexto
var canvas = document.getElementById('meu_canvas');
var context = canvas.getContext('2d');
// Desenhar um retângulo ( inicio 20/20 e tam 100/100
context.fillRect(20, 20, 100, 100);
</script>
</body>
</html>
------------------------------------------------------------------------------------------
Exemplo2
<!DOCTYPE html>
<html>
<head>
<title>Retângulo Colorido</title>
</head>
<body>
<canvas id="meu_canvas" width="200" height="200"></canvas>
<script>
// Canvas e contexto
var canvas = document.getElementById('meu_canvas');
var context = canvas.getContext('2d');
// Preenchimento vermelho
context.fillStyle = 'red';
context.fillRect(50, 50, 100, 100);
// Contorno azul, com espessura de 3px
context.lineWidth = 3;
context.strokeStyle = 'blue';
context.strokeRect(50, 50, 100, 100);
</script>
</body>
</html>
-------------------------------------------------------------------------------------
Exemplo3
<!DOCTYPE html>
<html>
<head>
<title>Retângulo Colorido</title>
</head>
<body>
<canvas id="meu_canvas" width="300" height="300"></canvas>
<script>
// Canvas e contexto
var canvas = document.getElementById('meu_canvas');
var context = canvas.getContext('2d');
// Preenchimento vermelho
context.fillStyle = 'red';
context.fillRect(50, 50, 100, 100);
// Contorno azul, com espessura de 3px
context.lineWidth = 3;
context.strokeStyle = 'blue';
context.strokeRect(50, 50, 100, 100);
// Preenchimento verde
context.fillStyle = 'green';
context.fillRect(150, 150, 100, 100);
// Contorno amarelo, com espessura de 3px
context.lineWidth = 3;
context.strokeStyle = 'yellow';
context.strokeRect(150, 150, 100, 100);
</script>
</body>
</html>
Nenhum comentário:
Postar um comentário