Dark Wooden Panel Coasters (50, 100 pcs)

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


These square-shaped coasters add style to any surface while protecting it from nasty stains.

They come in a pack of 50 or 100 coasters.

The rounded edges give them a sleek, modern look, and the 50-point pulp board keeps them in place at all times.

.: Material: 100% matte hardboard - 50 pt pulp board
.: Assembled in the USA from globally sourced parts
.: One size: 4" × 4" (10.2cm × 10.2cm)
.: Available set of 50 pieces or set of 100 pieces
.: One side print

  4" × 4"
Width, in 4.00
Height, in 4.00

 


/** * 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);