Slidenav

Defines a navigation with previous and next buttons to flip through slideshows.

Usage

To create a navigation with previous and next buttons, just add the uk-slidenav attribute to <a> elements. Add the previous or next parameter to the attribute to style the nav items as previous or next buttons.

<a href="" uk-slidenav-next></a> <a href="" uk-slidenav-previous></a>
Copy to clipboard
  • <a href="#" uk-slidenav-previous></a>
    <a href="#" uk-slidenav-next></a>

Slidenav container

To display a conjoint slidenav, wrap the slidenav items inside a <div> element and add the .uk-slidenav-container class, as well as one of the .uk-position-* classes.

<div class="uk-slidenav-container">
  <a href="" uk-slidenav-previous></a>
  <a href="" uk-slidenav-next></a>
</div>
Copy to clipboard
  • <div class="uk-slidenav-container">
      <a href="" uk-slidenav-previous></a>
      <a href="" uk-slidenav-next></a>
    </div>

Position as overlay

To position the slidenav on top of an element or the Slideshow component for example, just add one of the .uk-position-* classes from the Position component. To create a position context on the container, add the .uk-position-relative class.

<div class="uk-position-relative">
  <!-- The element which is wrapped goes here -->

  <a class="uk-position-center-left" href="" uk-slidenav-previous></a>
  <a class="uk-position-center-right" href="" uk-slidenav-next></a>
</div>

Note You can also apply the Visibility component, so that the slidenav only appears on hover.

Copy to clipboard
  • <div class="uk-position-relative uk-visible-toggle" tabindex="-1" uk-slideshow>
      <ul class="uk-slideshow-items">
        <li>
          <img src="/images/photo.jpg" alt="" uk-cover />
        </li>
        <li>
          <img src="/images/dark.jpg" alt="" uk-cover />
        </li>
        <li>
          <img src="/images/light.jpg" alt="" uk-cover />
        </li>
      </ul>
    
      <a
        class="uk-position-center-left uk-position-small uk-slidenav-large uk-hidden-hover text-muted-foreground"
        href="#"
        uk-slidenav-previous
        uk-slideshow-item="previous"
      ></a>
      <a
        class="uk-position-center-right uk-position-small uk-slidenav-large uk-hidden-hover text-muted-foreground"
        href="#"
        uk-slidenav-next
        uk-slideshow-item="next"
      ></a>
    </div>
Customize