Switcher

Dynamically transition through different content panes.

Switcher

Dynamically transition through different content panes.

Usage

The Switcher component consists of a number of toggles and their related content items. Add the uk-switcher attribute to a list element which contains the toggles. Add the .uk-switcher class to the element containing the content items.

By default, the element with the .uk-switcher class has to succeed the toggle directly in order for the switcher to function. If you need it to be nested in another element, for example when using a grid, add the connect: SELECTOR option to the uk-switcher attribute and select the element containing the items for switching.

Typically, the switcher toggles are styled through other components, some of which will be shown here.

<!-- This is the nav containing the toggling elements -->
<ul uk-switcher>
    <li><a href="#"></a></li>
</ul>

<!-- This is the container of the content items -->
<ul class="uk-switcher">
    <li></li>
</ul>

In this example we are using the Subnav component.


In some cases you want to switch to another content section from within the active content. This is possible using the uk-switcher-item attribute. To target the items, you need to set the attribute to the number of the respective content item.

Setting the attribute to next and previous will switch to the adjacent items.

<ul class="uk-switcher uk-margin">
    <li><a href="#" uk-switcher-item="0"></a></li>
    <li><a href="#" uk-switcher-item="1"></a></li>
    <li><a href="#" uk-switcher-item="next"></a></li>
    <li><a href="#" uk-switcher-item="previous"></a></li>
</ul>

Connect multiple containers

It is also possible to connect multiple content containers. Just add the connect parameter to the uk-switcher attribute and use a selector that applies to all items.

<!-- This is the nav containing the toggling elements -->
<ul uk-switcher="connect: .my-class"></ul>

<!-- These are the containers of the content items -->
<ul class="uk-switcher my-class"></ul>

<ul class="uk-switcher my-class"></ul>

Animations

You can apply all animations from the Animation component to switcher items. To do so, add the animation parameter with the relevant class to the uk-switcher attribute.

<ul uk-switcher="animation: uk-animation-fade"></ul>

Multiple animations

You can also apply multiple animations from the Animation component. That way you can add different in and out animations.

<ul uk-switcher="animation: uk-animation-slide-left-medium, uk-animation-slide-right-medium"></ul>

Switcher and subnav

The switcher is easily applied to the Subnav component.

<!-- This is the subnav containing the toggling elements -->
<ul class="uk-subnav uk-subnav-pill" uk-switcher></ul>

<!-- This is the container of the content items -->
<ul class="uk-switcher"></ul>

Switcher and tab

As an exception to the rule, add the uk-tab attribute instead of uk-switcher to the tabbed navigation to combine the switcher with the Tab component.

<!-- This is the subnav containing the toggling elements -->
<ul uk-tab></ul>

<!-- This is the container of the content items -->
<ul class="uk-switcher"></ul>

Vertical tabs

Use the Grid and Width components to display content correctly with a vertical tabbed navigation.

<div uk-grid>
    <div class="uk-width-auto">
        <ul class="uk-tab-left" uk-tab="connect: #my-id"></ul>
    </div>
    <div class="uk-width-expand">
        <ul id="my-id" class="uk-switcher"></ul>
    </div>
</div>

Switcher and button

The switcher can also be applied to buttons or button groups from the Button component. Just add the switcher attribute to a block around a group of buttons or to the element with the .uk-button-group class.

<!-- This is a switcher using a number of buttons -->
<div uk-switcher="toggle: > *">
    <button class="uk-button uk-button-default" type="button"></button>
    <button class="uk-button uk-button-default" type="button"></button>
</div>

<ul class="uk-switcher"></ul>

Note Since this example does not wrap the buttons into list items the clickable elements which trigger the content switching has to be changed by using the toggle option.


Switcher and nav

To apply the switcher to the Nav component, add the uk-switcher attribute to the nav <ul> element. Use the Grid and Width components to arrange nav and content in a grid layout.

<div uk-grid>
    <div class="uk-width-small">
        <ul class="uk-nav uk-nav-default" uk-switcher="connect: #my-id"></ul>
    </div>
    <div class="uk-width-expand">
        <ul id="my-id" class="uk-switcher"></ul>
    </div>
</div>

Component options

Any of these options can be applied to the component attribute. Separate multiple options with a semicolon. Learn more

OptionValueDefaultDescription
connectCSS selector~.uk-switcherRelated items container. By default succeeding elements with class ‘uk-switcher’.
toggle CSS selector> * > :first-childSelect the clickable elements which trigger content switching.
itemNav CSS selectorfalseRelated nav container. By default, nav items are found in related items container only.
active Number0Active index on init. Providing a negative number indicates a position starting from the end of the set.
animationStringfalseSpace-separated names of animations. Comma-separated for animation out.
durationNumber200The animation duration.
swipingBooleantrueUse swiping.

connect is the Primary option and its key may be omitted, if it’s the only option in the attribute value.

<span uk-switcher=".switcher-container"></span>

JavaScript

Learn more about JavaScript components.

Initialization

UIkit.switcher(element, options);

Events

The following events will be triggered on the connected items of the elements with this component attached:

NameDescription
beforeshowFires before an item is shown. Can prevent showing by calling preventDefault() on the event.
showFires after an item is shown.
shownFires after the item’s show animation has completed.
beforehideFires before an item is hidden. Can prevent hiding by calling preventDefault() on the event.
hideFires after an item’s hide animation has started.
hiddenFires after an item is hidden.

Methods

The following methods are available for the component:

Show

UIkit.switcher(element).show(index);

Shows the Switcher item with given index.

NameTypeDefaultDescription
indexString, Number, Node0Switcher item to show. 0 based index.