0.7.3 • Published 5 years ago

tabed v0.7.3

Weekly downloads
10
License
MIT
Repository
github
Last release
5 years ago

Tabed

tabed is a small, super fast and easy to use JavaScript Library to create HTML tabs.

Installation

<link rel="stylesheet" href="https://unpkg.com/tabed@0.7.3/dist/tabed.min.css">
<script src="https://unpkg.com/tabed@0.7.3/dist/tabed.min.js"></script>

or

npm install tabed

Browsers support

IE / EdgeFirefoxChromeSafariiOS SafariSamsungOperaOpera Mini
IE10, IE11, Edgelast 3 versionslast 3 versionslast 3 versionslast 2 versionslast 2 versionslast 2 versionslast 2 versions

Example

<div class="tabed">
  <div class="tab" data-title='tab placeholder 1'>
    this is a tab 1
  </div>
  <div class="tab" data-title='tab placeholder 2'>
    this is a tab 2
  </div>
</div>
<script>
  new Tabed(".tabed", {
    // options...
  });
</script>

Options

theme

Option to set theme

  new Tabed(".tabed", {
    theme: "theme_name"
  });

tabOpen

Option to set tab that will be open on start

  new Tabed(".tabed", {
    tabOpen: 2
  });
0.7.3

5 years ago

0.7.2

5 years ago

0.7.0

5 years ago

0.6.1

6 years ago

0.6.0

6 years ago

0.5.1

6 years ago

0.5.0

6 years ago