Skip to content

Instantly share code, notes, and snippets.

@Chandankkrr
Created May 31, 2021 11:51
Show Gist options
  • Save Chandankkrr/8ccca067625ca2441fd18ee4778e07eb to your computer and use it in GitHub Desktop.
Save Chandankkrr/8ccca067625ca2441fd18ee4778e07eb to your computer and use it in GitHub Desktop.
window.nextjs = {
updateCursor: function (connectionId, x, y) {
const el = document.getElementById(connectionId);
if (el) {
el.style.transform = `translate3d(${x}px, ${y}px, 0px)`;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment