Particulas 2
by hugoruscitti
HTML
<canvas id='canvas' width=300 height=300>
JavaScript
var canvas = document.getElementById('canvas');
var c = canvas.getContext('2d');
c.fillStyle = 'blue'
c.fillRect(100, 100, 50, 50);
by hugoruscitti
<canvas id='canvas' width=300 height=300>
var canvas = document.getElementById('canvas');
var c = canvas.getContext('2d');
c.fillStyle = 'blue'
c.fillRect(100, 100, 50, 50);