Canvas for Live Coding

Developer
Size
1,799 Kb
Views
38,456

How do I make an canvas for live coding?

What is a canvas for live coding? How do you make a canvas for live coding? This script and codes were developed by Anshu Arora on 15 September 2022, Thursday.

Canvas for Live Coding Previews

Canvas for Live Coding - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Canvas for Live Coding</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <h1>Using a Canvas</h1>
<canvas id="d1">
</canvas>
<p> <input type="button" value="make lime" onclick="dolime()"> <input type="button" value="make yellow" onclick="doyellow()">
</p> <script src="js/index.js"></script>
</body>
</html>

Canvas for Live Coding - Script Codes CSS Codes

canvas { width: 200px; height: 100px; border: 1px solid #c3c3c3;
}

Canvas for Live Coding - Script Codes JS Codes

function dolime() { var dd1 = document.getElementById("d1"); dd1.style.backgroundColor="lime";
}
function doyellow() { var dd1 = document.getElementById("d1"); dd1.style.backgroundColor="white"; var ctx = dd1.getContext("2d"); ctx.fillStyle="yellow"; ctx.fillRect(10,10,40,40); ctx.fillRect(60,10,40,40); ctx.fillStyle = "black"; ctx.font = "30px TimesNewRoman"; ctx.fillText("Amay",10,80);
}
Canvas for Live Coding - Script Codes
Canvas for Live Coding - Script Codes
Home Page Home
Developer Anshu Arora
Username anshusaxenaarora
Uploaded September 15, 2022
Rating 3
Size 1,799 Kb
Views 38,456
Do you need developer help for Canvas for Live Coding?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Anshu Arora (anshusaxenaarora) Script Codes
Create amazing art & images with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!