Tripod Lamp with High-Res Printed Shade, US\CA plug

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


When function met aesthetics, this tripod lamp with custom-printed lamp shades was born.

Featuring a galvanized steel tripod base, this lamp delivers both high-end durability and a unique decorative touch. 

The lamp features a type A plug with two pins, which makes it suitable for the sockets used in the USA and Canada.

.: Galvanized steel tripod base
.: High-res printed shade with fabric trim
.: Unique option to decor your room
.: Type A plug with 2 flat pins - supported in the USA and Canada
.: 100 – 127 V
.: Requires 13 Watt compact fluorescent or 60 Watt regular incandescent or LED equivalent bulb (not included).

 

  One size
Width, in 7.00
Height, in 11.00
Depth, in 7.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);