Amaze UI 2.4

JavaScript

Amaze UI styled jQuery plugins and utils.

Collapse


The collapse component can be used to make dropdown and accordion.

Examples

Accordion

To create an accordion, use Panel with following classes in collapse:

  • Use .am-collapse to hide contents;
  • Use .am-collapse.am-in to show contents;

Use Data API after adding above classes:

Copy
<h4 data-am-collapse="{parent: '#accordion', target: '#do-not-say-1'}"></h4>

Where

  • parent is the container ID
  • target is the content container ID

If the trigger element is <a>, target can be set in href.

Copy
<a data-am-collapse="{parent: '#accordion'}" href="#do-not-say-1">
  ...
</a>
Copy

Sonnet 19 Part 1 - By William Shakespeare

Devouring Time,blunt thou the lion'paws,
And make the earth devour her own sweet brood;
Pluck the keen teeth from the fierce tiger's jaws,
And burn the long--liv'd phoenix in her blood;

Sonnet 19 Part 2 - By William Shakespeare

Make glad and sorry seasons as thou fleets,
And do whate'er thou wilt,swift--footed Time,
To the wide world and all her fading sweets;
But I forbid thee one most heinous crime,
O carve not with thy hours my love's fair brow,

Sonnet 19 Part 3 - By William Shakespeare

Nor draw no lines there with thine antique pen.
Him in thy course untainted do allow,
For beauty's pattern to succeeding men.
  Yet do thy worst,old Time;despite thy wrong,
  My love shall in my verse ever live young.
<a data-am-collapse="{parent: '#accordion'}" href="#do-not-say-1">
  ...
</a>

Sonnet 19 Part 1 - By William Shakespeare

Devouring Time,blunt thou the lion'paws,
And make the earth devour her own sweet brood;
Pluck the keen teeth from the fierce tiger's jaws,
And burn the long--liv'd phoenix in her blood;

Sonnet 19 Part 2 - By William Shakespeare

Make glad and sorry seasons as thou fleets,
And do whate'er thou wilt,swift--footed Time,
To the wide world and all her fading sweets;
But I forbid thee one most heinous crime,
O carve not with thy hours my love's fair brow,

Sonnet 19 Part 3 - By William Shakespeare

Nor draw no lines there with thine antique pen.
Him in thy course untainted do allow,
For beauty's pattern to succeeding men.
  Yet do thy worst,old Time;despite thy wrong,
  My love shall in my verse ever live young.

Please be aware of there is a nav container outside the target element, which is used to calculate the height of menu.

Copy
<button class="am-btn am-btn-primary" data-am-collapse="{target: '#collapse-nav'}">Menu <i class="am-icon-bars"></i></button>
<nav>
  <ul id="collapse-nav" class="am-nav am-collapse">
    <li><a href="">Getting Started</a></li>
    <li><a href="">CSS</a></li>
    <li class="am-active"><a href="">JS</a></li>
    <li><a href="">Customize</a></li>
  </ul>
</nav>

Usage

Using Data API

Add data-am-collapse attribute to element and set the value of target to the ID of collapse element:

Copy
<button data-am-collapse="{target: '#my-collapse'}"></button>

Using JS

Copy
$('#myCollapse').collapse()

Methods

  • $().collapse(options) - Expand/Collapse target element
Copy
$('#myCollapse').collapse({
  toggle: false
})
  • $().collapse('toggle') - Switch the panel state
  • $().collapse('open') - Expand the panel
  • $().collapse('close') - Collapse the panel

Options

ParameterTypeDefaultDescription
parentSelectorfalseIf a parent selector is provided, then all collapsible elements under the specified parent will be closed when this collapsible item is shown.
togglebooleantrueToggles the collapsible element on invocation

Events

Some events are defined in collapse and can be triggered on collapse element. Using the dropdown menu as example:

Copy
$(function() {
  $('#collapse-nav').on('open.collapse.amui', function() {
    console.log('Menu is opened!');
  }).on('close.collapse.amui', function() {
    console.log('Menu is closed!');
  });
});
EventDescription
open.collapse.amuiThis event fires when open method get called
opened.collapse.amuiThis event fires when a collapse element is fully opend (will wait for CSS transitions to complete).
close.collapse.amuiThis event fires when close method get called
closed.collapse.amuiThis event fires when a collapse element is fully closed (will wait for CSS transitions to complete).

Attention

Don't use vertical margin/padding/border in container of collapse element.

Because of the way jQuery calculate the heights of elements, styles can go wrong if margin/padding/border is added to container.

侧栏导航
Amaze UI 微信
在微信上关注我们