Unfold (Dropdown and others)
Toggle contextual overlays for displaying lists of links and more with the Nova unfold plugin.
Overview
Dropdowns are toggleable, contextual overlays for displaying lists of links and more. They're made interactive with the included Bootstrap dropdown style classes.
Accessibility
Dropdowns are toggleable, contextual overlays for displaying lists of links and more. They're made interactive with the included Bootstrap dropdown style classes.
The WAI ARIA standard defines an actual role="menu"
widget, but this is specific to application-like menus which trigger actions or functions. ARIA menus can only contain menu items, checkbox menu items, radio button menu items, radio button groups, and sub-menus.
Nova's dropdowns, on the other hand, are designed to be generic and applicable to a variety of situations and markup structures. For instance, it is possible to create dropdowns that contain additional inputs and form controls, such as search fields or login forms. For this reason, Nova does not expect (nor automatically add) any of the role
and aria-
attributes required for true ARIA menus. Authors will have to include these more specific attributes themselves.
However, Nova does NOT add built-in support for most standard keyboard menu interactions, such as the ability to move through individual .dropdown-item
elements using the cursor keys and close the menu with the ESC key. To avoid duplication, we use the Bootstrap classes with Nova dropdown (hs.unfold.js) JS.
How to use?
Wrap the unfold's toggle (your button or link) and the unfold menu within an element that declares position: relative;
. Unfolds can be triggered from <a>
or <button>
elements to better fit your potential needs.
Copy-paste the following <script>
near the end of your pages under JS Nova to enable it.
Copy-paste the init function under JS Plugins Init., before the closing </body>
tag, to enable it.
Sidebar
By default, Nova .sidebar
is right positioned. To left position the sidebar, add .sidebar--left
modifier class to a parent, which also repositions the box-shadow style from right to left, and change the animation options data-unfold-animation-in=""
along with data-unfold-animation-out=""
from right to left. For example, data-unfold-animation-in="fadeInLeft"
.
Methods
Options can be passed via data attributes or JavaScript. For data attributes, append the option name to data-
, as in data-unfold-type=""
.
Attributes | Description | Default value |
---|---|---|
|
Show/hide effect.
If data-unfold-type="" is set to jquery-slide , the jQuery slideDown effect will be applied to the opening and slideUp to the close.
If data-unfold-type="" is set to css-animation , then any effect from the library animate.css can be used.
|
|
|
Accepts the ID of the hidden element as a parameter. | |
|
Defines by what event the script will fire. Valid values are:
|
click |
|
Specifies the duration of the animation. | 300 |
|
Determines the smoothness of the animation, if data-unfold-type="" is set to jquery-slide
jquery.easing.min.js plugin is required to extend the plugin.
Additional values:
|
linear |
|
Specifies the animation delay. | 350 |
|
Revealing animation effect, if data-unfold-type="" is set to css-animation . To run the script, you must additionally link animate.css All available animation values, can be found here |
fadeIn |
|
Disappearing animation effect, if data-unfold-type="" is set to css-animation . To run the script, you must additionally link animate.css All available animation values, can be found here |
fadeOut |
|
If true , enables hiding the content on scroll. |
true |
|
If true , enables hiding the content with blur effect. |
false |
|
Executes the code inside the body of the function each time it is opened. | |
|
Executes the code inside the body of the function each time it is closed. |