Answers for "canvas tag html"

4

html5 canvas

I made a library for thr HTML5 canvas.
https://jsfiddle.net/Catking/g0z6o1fb/
Posted by: Guest on April-12-2021
0

canvas tag html

//HTML
<canvas id="canv"></canvas>

//Javascript
var canvas = document.getElementById("canv");
canvas.width = canvas.height = 100;
var ctx = canvas.getContext("2d");
ctx.fillStyle = "red";
ctx.fillRect(10, 10, 80, 80);
Posted by: Guest on May-21-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language