Skip to content

Commit

Permalink
95: transition effect issue fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Swapnamayee Sahoo authored and Swapnamayee Sahoo committed Nov 21, 2023
1 parent 534dca0 commit 82ff0f9
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion blocks/accordion/accordion.css
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ main .accordion.faq-accordion .faq-answer {
overflow: hidden;
font-size: 16px;
max-height: 0;
transition: all 0.3s ease-in-out;
transition: all 0.4s ease-in-out;
text-align: left;
}

Expand Down
22 changes: 12 additions & 10 deletions blocks/accordion/accordion.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,17 +68,19 @@ export default function decorate(block) {
openfaq.nextElementSibling.classList.toggle('active');
}, 300);
}
const faqAnswer = e.currentTarget.nextElementSibling;
e.currentTarget.classList.toggle('active');
if (e.currentTarget.classList.contains('active')) {
faqAnswer.classList.toggle('active');
faqAnswer.style.maxHeight = `${faqAnswer.scrollHeight}px`;
} else {
faqAnswer.style.maxHeight = 0;
setTimeout(() => {
setTimeout(() => {
const faqAnswer = e.target.nextElementSibling;
e.target.classList.toggle('active');
if (e.target.classList.contains('active')) {
faqAnswer.classList.toggle('active');
}, 300);
}
faqAnswer.style.maxHeight = `${faqAnswer.scrollHeight}px`;
} else {
faqAnswer.style.maxHeight = 0;
setTimeout(() => {
faqAnswer.classList.toggle('active');
}, 300);
}
}, 300, e);
});
const faqAnswer = [...row.children][1];
faqAnswer.classList.add('faq-answer');
Expand Down

0 comments on commit 82ff0f9

Please sign in to comment.