Anastejs / easy-toggler

Simple class switcher on web elements. JavaScript only.

Home Page:https://rah-emil.ru/easy-toggler

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

EasyToggler.js πŸ”—πŸš€

YouTube Channel Subscribers GitHub GitHub all releases GitHub issues GitHub package.json version (subfolder of monorepo) jsDelivr hits (GitHub)

Simple class switcher on web elements. JavaScript only.

Import EasyToggler

ES

<script type="module">
  import easySetup from "easy-toggler";

  easySetup({
      toggle: 'easy-toggle',
      remove: 'easy-remove',
      add: 'easy-add',
      class: 'easy-class',
      rcoe: 'easy-rcoe',
      parallel: 'easy-parallel',
      self: 'easy-self'
  });
</script>

UMD (+ jsDelivr)

<script src="https://cdn.jsdelivr.net/npm/easy-toggler@2.1.0/dist/easy-toggler.min.js"></script>

CJS

<script type="module">
  const easySetup = require("easy-toggler.cjs");

  easySetup({
      toggle: 'easy-toggle',
      remove: 'easy-remove',
      add: 'easy-add',
      class: 'easy-class',
      rcoe: 'easy-rcoe',
      parallel: 'easy-parallel',
      self: 'easy-self'
  });
</script>

Example β„–1

When you click the button, the class show will be added to <nav id="main_menu">

<button data-easy-toggle="#main_menu" data-easy-class="show">Menu</button>

<nav id="main_menu">
    <ul>
        <li><a>Home</a></li>
        <li><a>About us</a></li>
        <li><a>Services</a></li>
        <li><a>Portfolio</a></li>
        <li><a>Contact us</a></li>
    </ul>
</nav>

Example β„–2

When you click the button, the class open will be added to <div id="categories" class="dropdown-menu">. When clicking outside the element area, class open will be deleted from <div id="categories" class="dropdown-menu">, since we specified the data-easy-rcoe attribute for the link.

<div class="dropdown">
    <a href="#" data-easy-toggle="#categories" data-easy-class="open" data-easy-rcoe>Categories</a>

    <div id="categories" class="dropdown-menu">
        <a href="#">HTML</a>
        <a href="#">CSS</a>
        <a href="#">JavaScript</a>
        <a href="#">Vue.js</a>
        <a href="#">Laravel</a>
    </div>
</div>

EasyToggler.js only allows you to conveniently manage the element classes. CSS styles (behavior of elements with certain classes) must be specified independently.

Specificity of attributes

  • easy-toggle - toggle class for target element
  • easy-add - add class for target element
  • easy-remove - remove class for target element
  • easy-class - specifying the class for the target element
  • easy-rcoe - indicate whether it is necessary to delete the class if another is pressed
  • easy-parallel - so that elements can open parallel to each other
  • easy-self - add a class to the clicked button

About

Simple class switcher on web elements. JavaScript only.

https://rah-emil.ru/easy-toggler

License:MIT License


Languages

Language:JavaScript 100.0%