1
Lamellen op vilt is een uitstekend product dat goed werkt in minimalistische, moderne, industriële, klassieke en glamourruimtes. De lamellen voegen niet alleen visueel belang toe, maar zorgen ook voor een uitstekende geluidsisolatie en -absorptie. Ze zijn verkrijgbaar in een groot aantal kleuren, in dit patroon vind je de tinten: Crème, Cashmere, Grijs, Flessengroen, Scandinavisch Grijs, Vies Roze, Zwart, Antraciet, Wit mat en Goud. Beschrijving uitvouwen .expand-button { position: relative; width: 100%; justify-content: end; left: 0; background: none; border: none; color: #e63b20; font-size: 1rem; cursor: pointer; display: inline-flex; align-items: center; transition: color 0.3s ease; } .arrow { display: inline-block; transition: transform 0.3s ease; margin-left: 5px; transform: rotate(180deg); } .description { overflow: hidden; transition: max-height 0.5s ease-in-out; max-height: 1.5em; /* Początkowo zwinięte */ } .collapsed { max-height: 1.5em; } .expanded { max-height: none; /* Ustawiane dynamicznie w JS */ } document.getElementById(toggleDescription").addEventListener("click", function () { const description = document.getElementById("description"); const arrow = document.getElementById("toggleButtonArrow"); const buttonText = this.querySelector('.button-text'); if (description.classList.contains('collapsed')) { description.style.maxHeight = description.scrollHeight + "px"; description.classList.remove('collapsed'); description.classList.add('expanded'); arrow.style.transform = "rotate(0deg)"; buttonText.textContent = "Beschrijving samenvouwen"; } else { description.style.maxHeight = "1.5em"; description.classList.remove('expanded'); description.classList.add('collapsed'); arrow.style.transform = "rotate(180deg)"; buttonText.textContent = "Beschrijving uitvouwen"; } });"