Add a smooth accordion animation to your <details>
elements using one line of Svelte.
Demo: https://andrewlester.net/svelte-animated-details/
npm i -D svelte-animated-details
You must:
- Give your
<details>
elementoverflow: hidden
oroverflow: clip
. You'll be warned in dev if you aren't.
An example configuration is shown below:
<details use:animatedDetails>
<summary>Summary</summary>
<p>Content</p>
</details>
<style>
details {
overflow: hidden;
}
</style>