Abverkauf
Muster­küchen

Wir bieten Ihnen ständig wechselnde Angebote.
document.addEventListener("DOMContentLoaded", function() { // Create the custom cursor element const customCursor = document.createElement("div"); customCursor.id = "custom-cursor"; document.body.appendChild(customCursor); // Update the cursor position document.addEventListener("mousemove", function(e) { customCursor.style.left = e.pageX + "px"; customCursor.style.top = e.pageY + "px"; }); // Add hover effect on links const links = document.querySelectorAll("a, button, .elementor-button"); links.forEach(link => { link.addEventListener("mouseenter", () => { customCursor.classList.add("hover"); }); link.addEventListener("mouseleave", () => { customCursor.classList.remove("hover"); }); }); }); // Custom CSS for the cursor const style = document.createElement("style"); style.textContent = ` #custom-cursor { position: fixed; width: 15px; height: 15px; background-color: #FF5005; border-radius: 50%; pointer-events: none; transform: translate(-50%, -50%); transition: transform 0.1s ease-out, background-color 0.3s; z-index: 9999; cursor: url("https://kuechencenter-speyer.de/wp-content/uploads/2022/05/cursor-1.svg"), auto; } #custom-cursor.hover { transform: translate(-50%, -50%) scale(1.5); background-color: rgba(255, 0, 0, 0.8); } `; document.head.appendChild(style);