Nothing found.

const cur = document.getElementById('cur'); const curR = document.getElementById('curR'); let mx=0,my=0,rx=0,ry=0; document.addEventListener('mousemove',e=>{ mx=e.clientX;my=e.clientY; cur.style.left=mx+'px';cur.style.top=my+'px'; }); (function animRing(){ rx+=(mx-rx)*.12;ry+=(my-ry)*.12; curR.style.left=rx+'px';curR.style.top=ry+'px'; requestAnimationFrame(animRing); })();