Spaces:
Running
Running
File size: 2,626 Bytes
4840bff 8885cb1 4840bff 8885cb1 4840bff |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="viewport" content="initial-scale=1">
<link href="style.css" rel="stylesheet" type="text/css">
<!--link href="../favicon.svg" rel="icon" type="image/svg+sml"-->
<script defer src="main.js"></script>
<title>Draw simple shapes</title>
</head>
<body>
<header>
</header>
<main>
<p><a href="../index.html">Back to homepage</a></p>
<h1>Draw some shapes with simple Web Workers API</h1>
<p>
To view the message between the main and the Worker,
view the message using the Web Developer Tools of your
browser.
</p>
<p>
The main script will first transfer the canvas as an
<code>offscreenCanvas</code> using
<code>canvas.transferControlToOffscreen();</code>.
After that the Worker will draw on the canvas.
</p>
<!-- Choose a shape and color from a selection list -->
<form>
<label for="shape">Choose a shape:</label>
<select id="shape" name="shape">
<option value="">--Choose a shape--</option>
<option value="rect">Rectangle</option>
<option value="square">Square</option>
<option value="circle">Circle</option>
</select>
<br>
<label for="color">Choose a color:</label>
<select id="color" name="color">
<option value="">--Choose a color</option>
<option value="salmon">Pink</option>
<option value="blue">Blue</option>
<option value="green">Green</option>
</select>
<br>
</form>
<!-- Drawing canvas -->
<canvas id="drawingArea"></canvas>
</main>
<footer>
<p xmlns:cc="http://creativecommons.org/ns#" xmlns:dct="http://purl.org/dc/terms/"><a property="dct:title" rel="cc:attributionURL" href="http://url link to work">Title of Work</a> by <a rel="cc:attributionURL dct:creator" property="cc:attributionName" href="http://url link to my profile">Chooi Chin Liew</a> is marked with <a href="https://creativecommons.org/publicdomain/zero/1.0/?ref=chooser-v1" target="_blank" rel="license noopener noreferrer" style="display:inline-block;">CC0 1.0<img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/cc.svg?ref=chooser-v1" alt=""><img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/zero.svg?ref=chooser-v1" alt=""></a></p>
</footer>
</body>
</html>
|