You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
289 B
JavaScript

const container = document.getElementById('container')
const box = document.createElement('div')
box.classList.add('box')
container.appendChild(box)
window.addEventListener('mousemove', (e)=>{
box.style.transform = `translate(${e.clientX}px, ${e.clientY}px) translate(-50%, -50%)`
})