Description
Product Description:
LA PASSIONE DI EVOLVEREThe name Stilo comes from the tool used by the Bronze Age to write, to imprint their first thoughts, their first ideas, their first concepts.In time the word “stilo†evolved to “styleâ€, that is the way each person uses a stilo: your own style. And our style is that of making products that leave a mark, exactly like a stilo in our ancestors wax boards.
const myParagraph = document.getElementById(“myParagraph”);const toggleButton = document.getElementById(“toggleButton”);const fullText = myParagraph.innerHTML;const truncatedText = fullText.slice(0, 750); // show first 750 characters// set initial textmyParagraph.innerHTML = truncatedText + ‘ …’ + fullText.slice(750) + ”;// add event listener to toggle buttontoggleButton.addEventListener(“click”, function() { const dots = document.getElementById(“dots”); const moreText = document.getElementById(“more”); if (dots.style.display === “none”) { dots.style.display = “inline”; moreText.style.display = “none”; toggleButton.textContent = “Show more”; } else { dots.style.display = “none”; moreText.style.display = “inline”; toggleButton.textContent = “Show less”; }});
Explore more from our collection.




Reviews
There are no reviews yet.