An AngularJS directive which slides another panel over your browser to reveal an additional interaction pane.
npm install angular-pageslide-directiveAn AngularJS directive which slides another panel over your browser to reveal an additional interaction pane.
It does all the css manipulation needed to position your content off canvas.
See it in action HERE
Examples in the repository, run them with npm run examples


Use within your Angular app
npm install --save angular-pageslide-directive
var app = angular.module("app", ["pageslide-directive"]);
Just use the ``` element or attribute inside a controller scope like this:
please note that you need an outer controller to define the scope of your checked model
also you need an inner ` some random content... // Configuration // Interaction // Style Licensed under MIT 2013, Daniele Piccone www.danielepiccone.com` to wrap your content in``
...
...`$3
``
pageslide (required)
ps-side (optional) = Where the panel should appear (right,left,top,bottom), if empty defaults to "right"
ps-container (optional) = custom CSS ID selector to which the slider div appends (e.g:
ps-body-class (optional) = if true adds a class on the container body reflecting the state of the pageslide
ps-open (optional) = Boolean true/false used to open and close the panel (optional)
ps-auto-close (optional) = true if you want the panel to close on location change
ps-key-listener (optional) = close the sidebar with the ESC key (defaults to false)
ps-click-outside (optional) = close the sidebar by clicking outside (defaults to true)
ps-push (optional) = push the main body to show the panel (defaults to false)
ps-class (optional) = The class for the pageslide (default: "ng-pageslide")
ps-speed (optional) = The speed of the transition (optional)
ps-size (optional) = desired height/width of panel (defaults to 300px)
ps-zindex (optional) = desired z-index (defaults to 1000)Licensing
Author