Aerodinámica De La Avispa Más Letal Del Planeta
5 minted / 5 listed, 2 already collected by
@selgroostik and
@crlptrs Thanks a lot!
It comes with a javascript code made under my prompt by chatgpt that you can run here:
w3schools.com/ and it draws a wasp or similar 😂😭
3 remaining
objkt.com/asset/KT1JUUhUpAfy…
<!DOCTYPE html> <html> <head> <style> canvas { border: 1px solid black; } </style> </head> <body> <canvas id="waspCanvas" width="200" height="200"></canvas> <script> const canvas = document.getElementById('waspCanvas'); const context = canvas.getContext('2d'); // Wasp body context.fillStyle = '
#FFD700'; // Gold color context.beginPath(); context.arc(100, 100, 40, 0, 2 * Math.PI); context.fill(); // Wasp stripes context.fillStyle = 'black'; context.fillRect(80, 100, 40, 5); context.fillRect(80, 112, 40, 5); context.fillRect(80, 124, 40, 5); // Wasp head context.fillStyle = 'black'; context.beginPath(); context.arc(100, 80, 10, 0, 2 * Math.PI); context.fill(); // Wasp stinger context.beginPath(); context.moveTo(100, 110); context.lineTo(105, 118); context.lineTo(100, 124); context.fill(); // Wasp wings context.fillStyle = 'rgba(255, 255, 255, 0.5)'; context.beginPath(); context.ellipse(70, 80, 20, 10, 0, 0, 2 * Math.PI); context.fill(); context.beginPath(); context.ellipse(130, 80, 20, 10, 0, 0, 2 * Math.PI); context.fill(); </script> </body> </html>
#TezosNft #GifArt #Wasp #ComboNft #JavaScriptArt #AiHumanCollab