Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
document.addEventListener("DOMContentLoaded", function() {
// Wait for the overlay to load
var overlay = document.querySelector(".overlay");
if (!overlay) {
console.log("Overlay not found! Trying again...");
setTimeout(function() {
overlay = document.querySelector(".overlay");
}, 500);
}
// If overlay is still missing, stop execution
if (!overlay) {
return;
}
// Attach mousemove event to move the spotlight
document.addEventListener("mousemove", function(event) {
var x = event.clientX;
var y = event.clientY;
if (overlay) {
overlay.style.mask = "radial-gradient(circle 150px at " + x + "px " + y + "px, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%)";
overlay.style.webkitMask = "radial-gradient(circle 150px at " + x + "px " + y + "px, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%)";
}
});
});