You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
387 B
JavaScript
12 lines
387 B
JavaScript
const readMore = document.querySelector("#read-more");
|
|
|
|
window.addEventListener("load", () => {
|
|
const contents = document.querySelector(".about .accordion .contents");
|
|
contents.style.maxHeight = contents.querySelector(".excerpt").clientHeight + "px";
|
|
|
|
readMore.addEventListener("click", () => {
|
|
contents.style.maxHeight = contents.scrollHeight + "px";
|
|
readMore.remove();
|
|
});
|
|
});
|