3.3.4 • Published 1 year ago

accordion-js v3.3.4

Weekly downloads
2,818
License
MIT
Repository
github
Last release
1 year ago

Accordion

Lightweight and accessible accordion module with an extensible API. With the module you can create accordion on your website, useful especially for creating FAQ lists.

Version

3.3.4

Installation

npm

Install the package & import files

npm install accordion-js
import Accordion from 'accordion-js';
import 'accordion-js/dist/accordion.min.css';
CDN

Include files using CDN.

https://unpkg.com/accordion-js@3.3.4/dist/accordion.min.css
https://unpkg.com/accordion-js@3.3.4/dist/accordion.min.js
<link rel="stylesheet" href="[CDN CSS URL]">
<script src="[CDN JS URL]"></script>
Github

You can also download files from Github and attach them manually to your project. Note: On production use files (JS and CSS) only from dist/ folder.

Usage

Include files

See the section above.

Create HTML layout

This is just an example of a layout. You can create your own HTML structure.

<div class="accordion-container">
  <div class="ac">
    <h2 class="ac-header">
      <button type="button" class="ac-trigger">Lorem ipsum dolor sit amet.</button>
    </h2>
    <div class="ac-panel">
      <p class="ac-text">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
    </div>
  </div>

  <div class="ac">
    <h2 class="ac-header">
      <button type="button" class="ac-trigger">Lorem ipsum dolor sit amet.</button>
    </h2>
    <div class="ac-panel">
      <p class="ac-text">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
    </div>
  </div>

  <div class="ac">
    <h2 class="ac-header">
      <button type="button" class="ac-trigger">Lorem ipsum dolor sit amet.</button>
    </h2>
    <div class="ac-panel">
      <p class="ac-text">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
    </div>
  </div>
</div>
Initialize the module
<script>
  new Accordion('.accordion-container');
</script>

API

Examples

new Accordion(container, options)

  • container - string | HTMLElement (required), selector of accordion container
  • options - object (optional), accordion options
// Default options
new Accordion('.container-first');

// User options
new Accordion('.container-second', {
  duration: 400,
  showMultiple: true,
  onOpen: function(currentElement) {
    console.log(currentElement);
  }
});

// Define several accordions with the same options (pass an array with selectors)
new Accordion(['.container-first', '.container-second'], {});

// or pass an array with HTMLElements
const accordions = Array.from(document.querySelectorAll('.accordion-container'));
new Accordion(accordions, {});

// Detach events
const accordion = new Accordion('.container-first');
accordion.detachEvents();
Options
OptionTypeDefault valueDescription
durationnumber600Animation duration in ms
ariaEnabledbooleantrueAdd ARIA elements to the HTML structure
collapsebooleantrueAllow collapse expanded panel
showMultiplebooleanfalseShow multiple elements at the same time
onlyChildNodesbooleantrueDisabling this option will find all items in the container. Warning: Setting to false will break the functionality of nested accordions
openOnInitarray[]Show accordion elements during initialization
elementClassstring'ac'Element class
triggerClassstring'ac-trigger'Trigger class
panelClassstring'ac-panel'Panel class
activeClassstring'is-active'Active element class
beforeOpenfunction-Calls before the item is opened. beforeOpen: (currElement) => {}
onOpenfunction-Calls when the item is opened. onOpen: (currElement) => {}
beforeClosefunction-Calls before the item is closed. beforeClose: (currElement) => {}
onClosefunction-Calls when the item is closed. onClose: (currElement) => {}
Methods
OptionDescriptionArguments
attachEvents()Attach events-
detachEvents()Detach events-
open()Open the accordion element with the given idx E.g. acc.open(1)idx - element index
close()Close the accordion element with the given idx E.g. acc.close(1)idx - element index
toggle()Toggle the accordion element with the given idx E.g. acc.toggle(1)idx - element index
openAll()Open all accordion elements (without animation)-
closeAll()Close all accordion elements (without animation)-
update()If there are new items added by lazy load, you can run this method to update the Accordion-
destroy()Destroy accordion instance: Open elements, remove events, IDs & ARIA-

v3 Release Info

There have been a lot of changes to the API in version 3.0.0, so if you are using previous versions of the accordion (2.8.0 and below), I recommend updating the package to the latest version with new structure and options.

3.3.4

1 year ago

3.3.3

1 year ago

3.3.1

2 years ago

3.3.0

2 years ago

3.2.0

2 years ago

3.3.2

2 years ago

3.1.1

3 years ago

3.1.0

3 years ago

3.0.0

3 years ago

2.8.0

5 years ago

2.7.3

5 years ago

2.7.2

5 years ago

2.7.1

5 years ago

2.7.0

5 years ago

2.6.4

5 years ago

2.6.3

5 years ago

2.6.2-1

5 years ago

2.6.1-1

5 years ago

2.6.2

5 years ago

2.6.1

5 years ago

2.6.0

6 years ago

2.5.1

6 years ago

2.5.0

6 years ago

2.4.0

6 years ago

2.3.1

6 years ago

2.3.0

6 years ago

2.2.6

6 years ago

2.2.5

6 years ago

2.2.4

6 years ago

2.2.3

6 years ago

2.2.2

6 years ago

2.2.1

7 years ago

2.2.0

7 years ago