Mushroom Hanging Shelf Resin Wall Floating Shelf Amanita Mushroom Shape Home Decor Ornaments for Wall Hanging Shelves

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


SPECIFICATIONS

Use: Coat and Cap

Type: Storage Holders & Racks

Origin: Mainland China

Feature: Eco-Friendly

【Unique shape】We have come up with an ABSOLUTELY UNIQUE floating shelf in the shape of a amanita mushroom!

【Multifunction】You can put your jewelry, keys, wallet, watches, coins, headphones, accessories, cream, soap, gloves, hairclips here! Wall hanging shelves can be used as shelves for small indoor plants too.

【Durable】The floating shelves are mounted on the wall. The mount is suitable for both drywall, wood and concrete wall. The necessary accessories are included.

【Special】Colors may vary from photo. Each mushroom is painted by hand and it is unique. No two mushrooms are alike!

【Size】The dimensions are always approximate, since each mushroom is individually handcrafted, and exact repetition is impossible.There are three sizes: small, medium and large.

Mushroom Hanging Shelf

 

Material: Resin

Color: As Pictures Shown

Size: As Pictures Shown

Package Includes: 1x Mushroom Hanging Shelf

 

Notes: Please Allow 1-2 Cm Differs Because Of Manual Measurement; Resin Material Please Stay Away From Fire.


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