Open Demo
Demo Code
$('.pushpin-demo-nav').each(function() {
var $this = $(this);
var $target = $('#' + $(this).attr('data-target'));
$this.pushpin({
top: $target.offset().top,
bottom: $target.offset().top + $target.outerHeight() - $this.height()
});
});
// Only necessary for window height sized blocks.
html, body {
height: 100%;
}
Initialization
Here is a sample initialization of pushpin. Take a look at what the options are and customize them to your needs.
document.addEventListener('DOMContentLoaded', function() {
var elems = document.querySelectorAll('.pushpin');
var instances = M.Pushpin.init(elems, {
// specify options here
});
});
// Or with jQuery
$(document).ready(function(){
$('.pushpin').pushpin({
// specify options here
});
});
Options
Name | Type | Default | Description |
---|---|---|---|
top | Number | 0 | The distance in pixels from the top of the page where the element becomes fixed. |
bottom | Number | Infinity | The distance in pixels from the top of the page where the elements stops being fixed. |
offset | Number | 0 | The offset from the top the element will be fixed at. |
onPositionChange | Function | null | Callback function called when pushpin position changes. You are provided with a position string. |
Methods
Because jQuery is no longer a dependency, all the methods are called on the plugin instance. You can get the plugin instance like this:
var instance = M.Pushpin.getInstance(elem); /* jQuery Method Calls You can still use the old jQuery plugin method calls. But you won't be able to access instance properties. $('.target').pushpin('methodName'); $('.target').pushpin('methodName', paramName); */
.destroy();
Destroy plugin instance and teardown
instance.destroy();
Properties
Name | Type | Description |
---|---|---|
el | Element | The DOM element the plugin was initialized with. |
options | Object | The options the instance was initialized with. |
originalOffset | Number | Original offsetTop of element. |
CSS Classes
// Class for when element is above threshold
.pin-top {
position: relative;
}
// Class for when element is below threshold
.pin-bottom {
position: relative;
}
// Class for when element is pinned
.pinned {
position: fixed !important;
}