nicolas-steenhout / main

For my main site - jekyll and gh pages
MIT License
0 stars 2 forks source link

Add an accordion section for transcripts #72

Closed vavroom closed 4 months ago

vavroom commented 4 months ago

Need to have an expand/collapse section for the transcripts on _includes/speaker-reel.html

Ideally it would be something like:

<h3>Transcript</h3>
<div class="transcript">
...
</div>

I've tried implementing stuff from Heydon, but it isn't really working for me. Also tried stuff from Aditus which actually seems more on the button for accessibility, but I also can't make it work!

shawnthompson commented 4 months ago

Why not use basic HTML and use the 'details' element?

vavroom commented 4 months ago

As far as I know, that element is not ready for prime time yet.at least not with screen readers. More testing required. I will do that tomorrow I guess

vavroom commented 4 months ago

Went with the <details> and <summary> after all. Still need some styling to make it look like I want it to look like but that's no rush.