How do I implement this on my website?

Hi all

I haven’t been able to find what kind of library/tool is used to create this accordion like element on this website: www.starlabel.com

I’ve attached a picture of the element that I’m talking about.
Looking forward for your responses.
Thanks!

That would be because they didn’t use a library or tool to create the accordion. They rolled their own.

It’s quite easy to make your own accordion.

Accordions have header and panel sections.

  • attach a hover/click event to each header
  • When a header is triggered
    • hide all panels
    • show only the one panel that’s related to the triggered header

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.