0.6.1 • Published 4 years ago

classmatic v0.6.1

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

classmatic

npm bundle size

Set and unset CSS classes on any element with a click.

Perfect for simple websites.

Install

Option 1: Script Tag

Add this <script> tag just before your closing </body> tag.

<script src="https://cdn.jsdelivr.net/gh/panphora/classmatic@v0.6.1/dist/classmatic.min.js"></script>

Option 2: NPM Install

npm install classmatic
import classmatic from 'classmatic';

Examples

Sidebar

<button data-click-to-toggle-class="sidebar-open">toggle sidebar</button>
<aside data-click-away-to-remove-class="sidebar-open" data-show-if=".sidebar-open">sidebar content</aside>

Demo: Sidebar on Codepen

Tabs

<button data-click-to-add-class="tab-1-active" data-click-to-remove-class="[tab-2-active,tab-3-active]">Tab 1</button>
<button data-click-to-add-class="tab-2-active" data-click-to-remove-class="[tab-1-active,tab-3-active]">Tab 2</button>
<button data-click-to-add-class="tab-3-active" data-click-to-remove-class="[tab-1-active,tab-2-active]">Tab 3</button>
<div data-show-if=".tab-1-active">Content for the first tab.</div>
<div data-show-if=".tab-2-active">Content for the second tab.</div>
<div data-show-if=".tab-3-active">Content for the third tab.</div>

Demo: Tabs on Codepen

Nav Menu

<button data-click-to-toggle-class="nav-menu-open">Toggle Menu</button>
<ul class="nav-menu__menu" data-click-away-to-remove-class="nav-menu-open" data-show-if=".nav-menu-open">
  <li><a href="#">Menu Item</a></li>
  <li><a href="#">Menu Item</a></li>
  <li><a href="#">Menu Item</a></li>
</ul>

Demo: Nav Menu on Codepen

Everything at once

<button data-click-to-toggle-class="sidebar-open">data-click-to-toggle-class="sidebar-open"</button>
<div data-show-if=".sidebar-open">data-show-if=".sidebar-open"</div>
<div data-hide-if=".sidebar-open">data-hide-if=".sidebar-open"</div>
<button data-click-to-add-class="menu-open">data-click-to-add-class="menu-open"</button>
<button data-click-away-to-remove-class="menu-open">data-click-away-to-remove-class="menu-open"</button>
<div data-show-if=".menu-open">data-show-if=".menu-open"</div>
<div data-hide-if=".menu-open">data-hide-if=".menu-open"</div>
<button data-click-to-toggle-class="[hello1,hello2,hello3]">data-click-to-toggle-class="[hello1, hello2, hello3]"</button>
<button data-click-away-to-toggle-class="[hello1,hello2,hello3]">data-click-away-to-toggle-class="[hello1, hello2, hello3]"</button>
<div data-show-if=".hello1">data-show-if=".hello1"</div>
<div data-hide-if=".hello1">data-hide-if=".hello1"</div>

Demo: Kitchen Sink on Codepen

The Attributes

classmatic lets you use a few simple attributes to control when clicking around the page will add/remove/toggle classes.

Set/unset a class when clicking on an element

These attributes make clicking on their element add/remove/toggle a class on any element.

  • data-click-to-add-class="className selector(optional)"
    • Adds the className class to all elements that mtach selector (only when the current element is clicked)
  • data-click-to-remove-class="className selector(optional)"
    • Removes the className class from all elements that mtach selector (only when the current element is clicked)
  • data-click-to-toggle-class="className selector(optional)"
    • Toggles the className class on all elements that mtach selector (only when the current element is clicked)

Notes

  • If selector is not specified, classmatic will default to targeting the <body> element.
  • You can set/unset multiple classes with a single attribute by using the following syntax with braces: data-click-to-remove-class="[className1,className2] [selector1,selector2](optional)". The arguments inside the brances can NOT have spaces between them.
  • selector isn't assumed to be a class, so it must include either a . (for a class selector), # (for an ID selector), or [] (for an attribute selector)

Set/unset a class when clicking AWAY FROM an element

These attributes make clicking AWAY from their element add/remove/toggle a class on any element.

  • data-click-away-to-add-class="className selector(optional)"
    • Adds the className class to all elements that mtach selector (only when an element that's not the current element is clicked)
  • data-click-away-to-remove-class="className selector(optional)"
    • Removes the className class from all elements that mtach selector (only when an element that's not the current element is clicked)
  • data-click-away-to-toggle-class="className selector(optional)"
    • Toggles the className class on all elements that mtach selector (only when an element that's not the current element is clicked)

Important

  • A click away action will NOT trigger if the current click event also triggers a normal click action targeting the same className and selector

Control visibility of elements

classmatic makes it really easy to hide and show elements based on the classes on the page.

  • data-show-if="selector"
    • shows element ONLY if it or any ancestor element matches the selector. hides it otherwise.
  • data-hide-if="selector"
    • hides element ONLY if it or any ancestor element matches the selector. shows it otherwise.

Notes

  • The styles that make these attributes work are generated automatically for you as soon as classmatic loads. This is why classmatic should be loaded after your page's elements are done loading (just before the closing </body> tag). Otherwise, it won't know which elements to generate hide/show styles for.