Skip to content

Instantly share code, notes, and snippets.

View NicholasEli's full-sized avatar

Nicholas Eli NicholasEli

View GitHub Profile
const image_coordinates = (img) =>{
document.querySelector(img).addEventListener('click', (event) =>{
let target = event.currentTarget.getBoundingClientRect(),
target_w = target.width,
target_h = target.height,
target_x = target.left,
target_y = target.top,
x_pos = event.clientX,
y_pos = event.clientY;