Coming Soon

We're sorry, but this feature is not yet available. We are working hard to make it happen as soon as possible. Thank you for your patience and understanding. Please check back later for updates.

Just a demo

The element you clicked is for demonstration purposes only and does not lead to actual content. Everything you see here is a simulation intended to demonstrate how the UI elements might look and behave in a real application.

Dropbar

Create a toggleable, full-width section called dropbar.

The Dropbar component provides a section-like style for the Drop component. In opposite to the dropdown which is positioned anywhere on a page with space around, the dropbar extends to the full width or height of the viewport, so it perfectly fits three edges without spacing.

The Dropbar component is aim-aware. This means the dropbar stays open as long as the mouse pointer moves towards the dropbar. An additional delay ensures that the dropbar stays open even if the mouse pointer shortly moves in another direction. A dropbar closes immediately if another dropbar is opened.

Notice

This documentation is a work in progress.

Usage

Note If you are not using Tailwind CSS, you can skip this step. On your tailwind.config.js file, add the Dropbar component within the ui() plugin.

import ui from "franken-ui";
 
ui({
    components: {
        dropbar: {
            hooks: {},
            media: true
        }
    }
}),

To apply this component, add the .uk-dropbar class and add a modifier class for the direction from which the dropbar appears, for example .uk-dropbar-top.

<div class="uk-dropbar uk-dropbar-top"></div>

Additionally, add the uk-drop attribute to the dropbar and a toggle element before. Any content, like a button, can toggle the drop component. Since the dropbar visually requires to extend to the full width or height of the viewport, add the stretch: true option to the uk-drop attribute. To only stretch to one axis, use stretch: x or stretch: y. For all the animation details take a look at the Drop component.

<button type="button"></button>
<div class="uk-dropbar uk-dropbar-top" uk-drop="stretch: x"></div>
Copy to clipboard
  • Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
  • <div class="uk-height-medium uk-overflow-auto">
      <div class="uk-inline">
        <button class="uk-button uk-button-default" type="button">Hover</button>
        <div
          class="uk-dropbar uk-drop uk-dropbar-top uk-padding-small"
          uk-drop="stretch: x"
        >
          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
          tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
          veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
          commodo consequat.
        </div>
      </div>
    </div>

The dropbar is typically used together with the Navbar component.

Copy to clipboard
  • <div class="uk-height-medium uk-overflow-auto">
      <nav class="uk-navbar-container">
        <div class="uk-container">
          <div uk-navbar>
            <div class="uk-navbar-left">
              <ul class="uk-navbar-nav">
                <li>
                  <a
                    class="uk-navbar-toggle-animate uk-navbar-toggle"
                    href
                    uk-navbar-toggle-icon
                  ></a>
                  <div
                    class="uk-dropbar uk-drop uk-dropbar-top"
                    uk-drop="stretch: x"
                  >
                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
                    eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
                    enim ad minim veniam, quis nostrud exercitation ullamco laboris
                    nisi ut aliquip ex ea commodo consequat.
                  </div>
                </li>
              </ul>
            </div>
          </div>
        </div>
      </nav>
    </div>

Mind, that there is a dedicated implementation for multiple dropbars in the Navbar component and Dropnav component.

Direction

To set the appropriate dropbar style, add one of the following direction modifier classes.

DirectionDescription
uk-dropbar-topOpen the dropbar from the top.
uk-dropbar-bottomOpen the dropbar from the bottom.
uk-dropbar-leftOpen the dropbar from the left.
uk-dropbar-rightOpen the dropbar from the right.

To open the dropbar from a specific direction use the pos and stretch option from the Drop component.

PositionDescription
pos: top-left; stretch: xPositions the dropbar above the toggle and stretches it horizontally.
pos: bottom-left; stretch: xPositions the dropbar below the toggle and stretches it horizontally
pos: left-top; stretch: yPositions the dropbar to the left of the toggle and stretches it vertically
pos: right-top; stretch: yPositions the dropbar to the right of the toggle and stretches it vertically
<div
  class="uk-dropbar uk-dropbar-left"
  uk-drop="pos: left-top; stretch: y"
></div>
Copy to clipboard
  • <div class="uk-height-medium uk-overflow-auto">
      <nav class="uk-navbar-container">
        <div class="uk-container">
          <div uk-navbar>
            <div class="uk-navbar-left">
              <ul class="uk-navbar-nav">
                <li>
                  <a href>Top</a>
                  <div
                    class="uk-dropbar uk-drop uk-dropbar-top"
                    uk-drop="stretch: x; target: !.uk-navbar-container"
                  >
                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
                    eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
                    enim ad minim veniam, quis nostrud exercitation ullamco laboris
                    nisi ut aliquip ex ea commodo consequat.
                  </div>
                </li>
                <li>
                  <a href>Left</a>
                  <div
                    class="uk-dropbar uk-drop uk-dropbar-left"
                    uk-drop="stretch: y; target: !.uk-navbar-container"
                  >
                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
                    eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
                    enim ad minim veniam.
                  </div>
                </li>
                <li>
                  <a href>Right</a>
                  <div
                    class="uk-dropbar uk-drop uk-dropbar-right"
                    uk-drop="pos: bottom-right; stretch: y; target: !.uk-navbar-container"
                  >
                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
                    eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
                    enim ad minim veniam.
                  </div>
                </li>
              </ul>
            </div>
          </div>
        </div>
      </nav>
    </div>

Animation

To animate the dropbar use the slide-* or reveal-* animations from the Drop component. slide-* animations slide the dropbar and its content from a selected direction, while in the reveal-* animations, the content of the dropbar stays static and is revealed from a selected direction. Set animate-out: true to also show an animation when closing the dropbar.

AnimationDescription
slide-topSlides the dropbar from the top.
slide-bottomSlides the dropbar from the bottom.
slide-leftSlides the dropbar from the left.
slide-rightSlides the dropbar from the right.
reveal-topReveals the dropbar from the top.
reveal-bottomReveals the dropbar from the bottom.
reveal-leftReveals the dropbar from the left.
reveal-rightReveals the dropbar from the right.
<div uk-drop="animation: slide-top; animate-out: true"></div>
Copy to clipboard
  • <div class="uk-height-medium uk-overflow-auto">
      <nav class="uk-navbar-container">
        <div class="uk-container">
          <div uk-navbar>
            <div class="uk-navbar-left">
              <ul class="uk-navbar-nav">
                <li>
                  <a href>Slide Top</a>
                  <div
                    class="uk-dropbar uk-drop uk-dropbar-top"
                    uk-drop="stretch: x; target: !.uk-navbar-container; animation: slide-top; animate-out: true; duration: 700"
                  >
                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
                    eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
                    enim ad minim veniam, quis nostrud exercitation ullamco laboris
                    nisi ut aliquip ex ea commodo consequat.
                  </div>
                </li>
                <li>
                  <a href>Reveal Top</a>
                  <div
                    class="uk-dropbar uk-drop uk-dropbar-top"
                    uk-drop="stretch: x; target: !.uk-navbar-container; animation: reveal-top; animate-out: true; duration: 700"
                  >
                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
                    eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
                    enim ad minim veniam, quis nostrud exercitation ullamco laboris
                    nisi ut aliquip ex ea commodo consequat.
                  </div>
                </li>
                <li>
                  <a href>Slide Left</a>
                  <div
                    class="uk-dropbar uk-drop uk-dropbar-left"
                    uk-drop="stretch: y; target: !.uk-navbar-container; animation: slide-left; animate-out: true; duration: 700"
                  >
                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
                    eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
                    enim ad minim veniam.
                  </div>
                </li>
                <li>
                  <a href>Reveal Left</a>
                  <div
                    class="uk-dropbar uk-drop uk-dropbar-left"
                    uk-drop="stretch: y; target: !.uk-navbar-container; animation: reveal-left; animate-out: true; duration: 700"
                  >
                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
                    eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
                    enim ad minim veniam.
                  </div>
                </li>
                <li>
                  <a href>Slide Right</a>
                  <div
                    class="uk-dropbar uk-drop uk-dropbar-right"
                    uk-drop="pos: bottom-right; stretch: y;  target: !.uk-navbar-container; animation: slide-right; animate-out: true; duration: 700"
                  >
                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
                    eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
                    enim ad minim veniam.
                  </div>
                </li>
                <li>
                  <a href>Reveal Right</a>
                  <div
                    class="uk-dropbar uk-drop uk-dropbar-right"
                    uk-drop="pos: bottom-right; stretch: y;  target: !.uk-navbar-container; animation: reveal-right; animate-out: true; duration: 700"
                  >
                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
                    eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
                    enim ad minim veniam.
                  </div>
                </li>
              </ul>
            </div>
          </div>
        </div>
      </nav>
    </div>

A dropbar can contain a nav from the Nav component. Just add the .uk-nav class to a <ul> element and use the same .uk-dropdown-nav modifier from the Dropdown component to have the same nav style.

<button type="button"></button>
<div class="uk-dropbar uk-dropbar-top" uk-drop="stretch: x">
  <ul class="uk-dropdown-nav uk-nav">
    ...
  </ul>
</div>
Copy to clipboard
  • <div class="uk-height-large uk-overflow-auto">
      <nav class="uk-navbar-container">
        <div class="uk-container">
          <div uk-navbar>
            <div class="uk-navbar-left">
              <ul class="uk-navbar-nav">
                <li>
                  <a href>Hover</a>
                  <div
                    class="uk-dropbar uk-drop uk-dropbar-top"
                    uk-drop="stretch: x"
                  >
                    <ul class="uk-nav uk-navbar-dropdown-nav">
                      <li class="uk-active"><a href="#">Active</a></li>
                      <li><a href="#">Item</a></li>
                      <li class="uk-nav-header">Header</li>
                      <li><a href="#">Item</a></li>
                      <li><a href="#">Item</a></li>
                      <li class="uk-nav-divider"></li>
                      <li><a href="#">Item</a></li>
                    </ul>
                  </div>
                </li>
              </ul>
            </div>
          </div>
        </div>
      </nav>
    </div>

Large modifier

Add the .uk-dropbar-large class for a dropbar with larger vertical padding.

<div
  class="uk-dropbar uk-dropbar-large uk-dropbar-top"
  uk-drop="stretch: x"
></div>
Copy to clipboard
  • <div class="uk-height-large uk-overflow-auto">
      <nav class="uk-navbar-container">
        <div class="uk-container">
          <div uk-navbar>
            <div class="uk-navbar-left">
              <ul class="uk-navbar-nav">
                <li>
                  <a href>Hover</a>
                  <div
                    class="uk-dropbar uk-drop uk-dropbar-large uk-dropbar-top"
                    uk-drop="stretch: x"
                  >
                    <ul class="uk-nav uk-navbar-dropdown-nav">
                      <li class="uk-active"><a href="#">Active</a></li>
                      <li><a href="#">Item</a></li>
                      <li class="uk-nav-header">Header</li>
                      <li><a href="#">Item</a></li>
                      <li><a href="#">Item</a></li>
                      <li class="uk-nav-divider"></li>
                      <li><a href="#">Item</a></li>
                    </ul>
                  </div>
                </li>
              </ul>
            </div>
          </div>
        </div>
      </nav>
    </div>

Available hooks

Learn more about using hooks.

Hook NameAffected Classes
hook-dropbar.uk-dropbar
hook-top.uk-dropbar-top
hook-bottom.uk-dropbar-bottom
hook-left.uk-dropbar-left
hook-right.uk-dropbar-right
hook-misc*

Accessibility

The Drop component adheres to the Menu Button WAI-ARIA design pattern and automatically sets the appropriate WAI-ARIA roles, states and properties.

  • The toggle has the button role, the aria-expanded state and the aria-haspopup property.

Keyboard interaction

The Drop component can be accessed through keyboard using the following keys.

  • The enter or space keys open and close the drop.
  • The esc key closes the drop even if focus has moved to another element.