canvas
<!DOCTYPE html>
<html>
<body>
<canvas id="myCanvas" width="200" height="100" style="border:1px solid #000000; background: linear-gradient(to bottom right, red, yellow);">
Your browser does not support the HTML5 canvas tag.
</canvas>
<script>
setInterval(function(){document.getElementById("myCanvas").width+= 5},1000)
</script>
</body>
</html>Last updated