50% OFF! Hot items selling fast—Grab them before they're gone!
Height: 80cm Spread: 50cm document.addEventListener(“DOMContentLoaded”, function() { const man = document.querySelector(‘.man’); const plant = document.querySelector(‘.plant’); const heightLabel = document.querySelector(‘.height-label’); const maxHeight = 400; // Maximum height for any element const plantHeight = parseFloat(plant.style.height); const scale = maxHeight / plantHeight; plant.style.transform = `translateX(-50%) scale(${scale})`; man.style.transform = `translateX(-50%) scale(${scale})`; // Adjust height label position const newTop = (parseFloat(plant.style.height) * scale) / 2; heightLabel.style.top = `calc(100% – ${newTop}px)`; });