LED Gaming Mouse Pad

  • Sale
  • Regular price $19.99
Shipping calculated at checkout.


Made to add that flashy finishing touch on any gamer's desk, this LED mouse pad brings a wow factor unlike anything else. Made with a precision surface featuring an advanced blend of soft cloth and fine fabric, it lends itself to smooth mouse action and perfectly controlled flicks. Comes with detachable USB connector and non-slip backing for steady aim.

The LED strip has 14 different light settings which can be controlled by clicking the on/off button. If you hold it for more than 3 seconds, RGB lighting will switch off.

.: Soft Polyester surface
.: 0.11" (3mm) thick rubber base
.: LED light strip around the edges
.: Includes micro USB cable
.: Detachable USB - Connector
.: Non-slip rubber backing

 

  23.6" x 11.8"
Length, in 23.60
Width, in 11.80

 


/** * Function to move the background of a website like reptile scales. * * @param {string} elementId - The ID of the element to apply the background movement. * @param {number} speed - The speed of the background movement. * @param {number} scale - The scale of the background movement. */ function moveBackgroundLikeReptileScales(elementId, speed, scale) { const element = document.getElementById(elementId); // Check if the element exists if (!element) { console.error(`Element with ID "${elementId}" not found.`); return; } // Set the initial background position let position = 0; // Function to move the background function moveBackground() { // Calculate the new background position position += speed; // Apply the background position element.style.backgroundPosition = `${position}px ${position}px`; // Apply the background scale element.style.transform = `scale(${scale})`; // Request the next animation frame requestAnimationFrame(moveBackground); } // Start the background movement moveBackground(); } // Usage Example // Move the background of the element with ID "background" like reptile scales moveBackgroundLikeReptileScales("background", 2, 1.2);