2023-08-08 12:14:34 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>LJ Sketch</title>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div id="main">
|
|
|
|
<div id="toolbox">
|
|
|
|
<div id="colors"></div>
|
|
|
|
<input type="color" id="selectedColor"
|
|
|
|
class="button2x" value="#ffffff"></input>
|
|
|
|
<input type="button" id="clearButton"
|
|
|
|
class="button2x" value="♻"></input>
|
2024-02-29 14:54:45 +00:00
|
|
|
<!-- <input type="button" id="errButton"
|
|
|
|
class="button2x" value="err"></input> !-->
|
2023-08-08 12:14:34 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<canvas id="canvas" width="1024" height="1024"></canvas>
|
|
|
|
<span class="footer">LJ Sketch</span>
|
|
|
|
</div>
|
2023-08-25 18:47:24 +00:00
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="errorBox" class="invisible"></div>
|
2023-08-08 12:14:34 +00:00
|
|
|
|
|
|
|
<script src="main.js"></script>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|