html5 canvas
I made a library for thr HTML5 canvas.
https://jsfiddle.net/Catking/g0z6o1fb/
html5 canvas
I made a library for thr HTML5 canvas.
https://jsfiddle.net/Catking/g0z6o1fb/
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);
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us