50% OFF! Hot items selling fast—Grab them before they're gone!
Height: 25m, Spread: 8m document.addEventListener(“DOMContentLoaded”, function() { const man = document.querySelector(‘.man’); const plant = document.querySelector(‘.plant’); const maxHeight = 400; // Maximum height for the plant element in pixels to fit the reduced container height // Calculate the scale based on the plant’s height relative to the maxHeight const plantHeight = parseFloat(plant.style.height); const scale = maxHeight / plantHeight; // Apply the scale to both the plant and the man plant.style.transform = `translateX(-50%) scale(${scale})`; man.style.transform = `translateX(-50%) scale(${scale})`; // Adjust the spacing between the man and the plant const spacing = 75 * scale; // Adjust spacing based on scale plant.style.left = `calc(50% + ${spacing}px)`; man.style.left = `calc(50% – ${spacing}px)`; });