★ Kiss-cut and dye cutsticker sheets ★ ~3.7 x 3.7 inch (9.398 x 9.398 cm) ★ Vinyl Sticker Sheets
500
bottom of page
import wixWindow from 'wix-window';
$w.onReady(function () {
// Define the image to display
const image = document.createElement('img');
image.src = "https://drive.google.com/uc?id=1nJ18HQDUjhjtwPdwKMjDiN4Jr_iVpUMp";
image.style.position = 'absolute';
// Add an event listener to the document to track the mouse movements
document.addEventListener('mousemove', function(e) {
// Set the image's position to follow the mouse
image.style.left = e.pageX + 'px';
image.style.top = e.pageY + 'px';
});
// Add the image to the page
const gifContainer = $w('#gif-container');
gifContainer.append(image);
// Disable page scrolling
wixWindow.scroll.disable();
});
// Enable page scrolling when the page unloads
$w.onUnload(function() {
wixWindow.scroll.enable();
});