I'm a Web Developer and tutor that focuses on HTML, CSS, Javascript, Canvas, and website optimizations.
JS
Canvas
A small (751b) JS canvas wrapper for interval, that makes animations easy.
let example1 = tarp('#basic');
example1.render = (can, ctx)=>{
ctx.fillStyle = '#ff0000';
ctx.beginPath();
ctx.rect(20, 20, 100, 100);
ctx.fill();
}