Stylish Off canvas Sidebar Plugin With jQuery Sidebar js - Download Stylish Off-canvas Sidebar Plugin With jQuery - Sidebar.js

Download Stylish Off-canvas Sidebar Plugin With jQuery – Sidebar.js

Posted on

This time I will share jQuery Plugin and tutorial about Stylish Off-canvas Sidebar Plugin With jQuery – Sidebar.js, hope it will help you in programming stack.

Stylish Off canvas Sidebar Plugin With jQuery Sidebar js - Download Stylish Off-canvas Sidebar Plugin With jQuery - Sidebar.js
File Size: 9.47 KB
Views Total: 9337
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   

Sidebar.js is a lightweight and easy-to-use jQuery plugin that lets you create an off-screen, toggleable off-canvas sidebar for site navigation or control panels.

View more:

How to use it:

1. Include the jQuery sidebar.js plugin’s JS and CSS on the webpage.

1 <link href="sidebar.css" rel="stylesheet">
2 <script src="//code.jquery.com/jquery.min.js"></script>
3 <script src="sidebar.js"></script>

2. Wrap the sidebar and main content to a container element with an unique ID ‘wrapper’

1 <div id="wrapper">
2   <aside id="side-wrapper">
3     ... Sidebar Content ...
4   </aside>
5 </div>

3. Create a trigger element inside the wrapper to toggle the sidebar.

1 <button type="button" data-toggle="sidebar">Sidebar Toggle</button>

4. Call the function on the ‘#wrapper’ to active the plugin.

1 $('#wrapper').sidebar();

5. Customize the off-canvas sidebar with the following options.

01 $('#wrapper').sidebar({
02  
03   // sidebar toggle
04   toggler: '[data-toggle="sidebar"]',
05  
06   // CSS class for Wrapper when Sidebar is Collapsed
07   minimized: 'minimized',
08  
09   // CSS class for Wrapper Transition
10   animating: 'animating',
11  
12   // transition speed
13   duration: 250,
14  
15   // auto collapse sidebar on small screens
16   breakpoint: 768
17    
18 });

This awesome jQuery plugin is developed by Ult-UX. For more Advanced Usages, please check the demo page or visit the official website.

source : jqueryscript.net