##Zebra_Pin
####A lightweight jQuery plugin for pinning any element to the page or to a container element
Zebra_Pin is a lightweight (around 2KB minified) and adaptive (things work as expected when you manually resize the browser window) jQuery plugin for pinning elements to the page or to a container element, so that the element stays visible even if the user scrolls the page. This type of elements are also referred to as "fixed position elements" or "sticky elements".
You can use it in your projects to create sticky sidebars, sticky navigation, sticky headers and footers, or anything else you feel the need to make it stick to the page while the user scrolls.
You can have "hard" pinned elements (elements are pinned to their initial position and stay there), elements that become pinned only when the user scrolls to them, pinned elements that move only inside their parent element.
When elements become pinned a CSS class will be added to them, as specified by the plugin's "class_name" property.
Also, custom events are fired when elements are pinned/unpinned giving you even more power for customizing the result.
Note that this plugin will alter the target element(s) "position" property to "absolute" and/or "fixed", depending on the situation, so before calling the plugin make sure that this change will not affect your page's layout.
Works in all major browsers (Firefox, Opera, Safari, Chrome, Internet Explorer 7+)
##Features
- elements can be pinned inside a container element, not just to the page
- custom events are fired when pinning/unpinning elements offering even more control
- it is small – it weights around 2KB minified offering the best ratio of features per used bytes
- it’s cross-browser – works in every major browser and IE7+
Requirements
Zebra_Pin has no dependencies other than jQuery 1.4.2+
How to use
Zebra_Pin is available as a Bower package. To install it use:
bower install zebra_pin
Zebra_Pin is also available as a npm package. To install it use:
npm install zebra_pin
Load the latest version of jQuery from a CDN and provide a fallback to a local source, like:
<script src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
<script>window.jQuery || document.write('<script src="path/to/jquery-1.12.0.js"><\/script>')</script>
Load the Zebra_Pin jQuery plugin:
<script src="path/to/zebra_pin.js"></script>
Now, within the DOM-ready event, pin elements to page or to a container:
$(document).ready(function() {
new Zebra_Pin($('#myelement'));
new Zebra_Pin($('#myelement'), {
top_spacing: 10
});
new Zebra_Pin($('#myelement'), {
contained: true
});
new Zebra_Pin($('#myelement'), {
hard: true
});
});
Configuration options and demos on the project's homepage