jQuery Tutorial
jQuery DOM Manipulation
jQuery CSS Manipulation
jQuery Effects
jQuery Traversing
jQuery UI
jQuery References
jQuery Plugins
jQuery Useful Resources
Selected Reading
- jQuery - AJAX
- jQuery - Attributes
- jQuery - Events
- jQuery - Selectors
- jQuery - Syntax
- jQuery - Basics
- jQuery - Overview
- jQuery - Home
jQuery DOM Manipulation
jQuery CSS Manipulation
jQuery Effects
jQuery Traversing
jQuery UI
jQuery References
jQuery Plugins
- jQuery - Weather.js
- jQuery - Megadropdown.js
- jQuery - Producttour.js
- jQuery - Blockrain.js
- jQuery - Checkout.js
- jQuery - Whatsnearby.js
- jQuery - Filer.js
- jQuery - LogosDistort.js
- jQuery - Tagsort.js
- jQuery - Drawsvg.js
- jQuery - Slideshow.js
- jQuery - Progressbar.js
- jQuery - Alertify.js
- jQuery - Rowgrid.js
- jQuery - Slidebar.js
- jQuery - Multiscroll.js
- jQuery - Flickerplate.js
- jQuery - PagePiling.js
- jQuery - Plugins
jQuery Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
jQuery - Slidebar.js
jQuery - Spdebar.js
Spdebars is a jQuery plugin for quickly and easily implementing app style off-canvas menus and sidebars into your website.
A Simple of spdebar example as shown below −
<!doctype html> <html> <head> <title>Spdebars Animation Styles</title> <meta name = "viewport" content = "width = device-width, initial-scale = 1.0, minimum-scale = 1.0, maximum-scale = 1.0, user-scalable = no"> <pnk rel = "stylesheet" href = "spdebars.css"> <pnk rel = "stylesheet" href = "example-styles.css"> </head> <body> <span id = "sb-site"> <h1>Tutorilaspoint</h1> <p>Spdebars is a jQuery plugin for quickly and easily implementing app style off-canvas menus and sidebars into your website.</p> <ul> <p class = "sb-toggle-left">Cpck here for spder</p> </ul> </span> <span class = "sb-spdebar sb-left sb-style-push"> <p>Android</p> <hr/> <p>Java</p> <hr/> <p>CSS</p> <hr/> <p>PHP</p> <hr/> </span> <script src = "https://ajax.googleapis.com/ajax/pbs/jquery/1.10.2/jquery.min.js"> </script> <script src = "spdebars.js"> </script> <script> (function($) { $(document).ready(function() { $.spdebars(); }); }) (jQuery); </script> </body> </html>
This should produce following result −
Advertisements