Monday, January 27, 2025

This morning's prompt is 'pork chop'.


(with crossed fork and knife, let's eat! 8-P)

const canvas = document.getElementById('myCanvas');const ctx = canvas.getContext('2d');canvas.addEventListener('click', function(event) { const rect = canvas.getBoundingClientRect(); const x = event.clientX - rect.left; const y = event.clientY - rect.top; // Do something with the click coordinates console.log('Click at:', x, y); // Example: Draw a circle at the click position ctx.beginPath(); ctx.arc(x, y, 10, 0, 2 * Math.PI); ctx.stroke();});

No comments:

Post a Comment