• Stars
    star
    167
  • Rank 219,049 (Top 5 %)
  • Language
    JavaScript
  • Created almost 10 years ago
  • Updated almost 8 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Show side panel by sliding from the left or right of the page.

Build Status

Slide Reveal

Show side panel by sliding from the left or right of the page.

Getting Started

Download the production version or the development version.

Or install using bower.

bower install slidereveal

In your web page:

<script src="jquery.js"></script>
<script src="dist/jquery.slidereveal.min.js"></script>

<div id="slider">Hello World!!</div>
<button id="trigger">Hello World!!</button>

<script>
$(function($) {
  var slider = $("#slider").slideReveal({
  	trigger: $("#trigger")
  });
});
</script>

The plugin does not add any CSS to your side panel. So, you need to style it yourself for a nice panel or a beautiful navigation.

Documentation and Examples

Please refer to its github.io

Release History

See the release page

How to Contribute

See the contributing page