1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/examples/js_dom_draw/index.html

7 lines
288 B
HTML
Raw Permalink Normal View History

2021-10-27 23:18:09 +03:00
<body class="main">
<title>Drawing with mouse events</title>
<input type="button" id="clearButton" value="Clear canvas">
<canvas style="border: 1px solid black;" width="720" height="480" id="canvas"></canvas>
2021-10-27 23:18:09 +03:00
<script type="text/javascript" src="draw.js"></script>
</body>