We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 811a632 commit b90881cCopy full SHA for b90881c
1 file changed
assets/js/Ui.js
@@ -0,0 +1,6 @@
1
+const glow = document.getElementById("glow-cursor");
2
+
3
+window.addEventListener("mousemove", (e) => {
4
+ glow.style.left = e.clientX + "px";
5
+ glow.style.top = e.clientY + "px";
6
+});
0 commit comments