1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <!-- Licensed under a BSD license. See license.html for license -->
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
- <title>Canvas Random Dots</title>
- </head>
- <body>
- </body>
- <script type="module">
- function main() {
- const ctx = document.createElement('canvas').getContext('2d');
- document.body.appendChild(ctx.canvas);
- ctx.canvas.width = 256;
- ctx.canvas.height = 256;
- ctx.fillStyle = '#FFF';
- ctx.fillRect(0, 0, ctx.canvas.width, ctx.canvas.height);
- function randInt(min, max) {
- if (max === undefined) {
- max = min;
- min = 0;
- }
- return Math.random() * (max - min) + min | 0;
- }
- function drawRandomDot() {
- ctx.fillStyle = `#${randInt(0x1000000).toString(16).padStart(6, '0')}`;
- ctx.beginPath();
- const x = randInt(256);
- const y = randInt(256);
- const radius = randInt(10, 64);
- ctx.arc(x, y, radius, 0, Math.PI * 2);
- ctx.fill();
- }
- function render() {
- drawRandomDot();
- requestAnimationFrame(render);
- }
- requestAnimationFrame(render);
- }
- main();
- </script>
- </html>
|