materialize
  1. materialize-pushpin

Materialize Pushpin

Materialize Pushpin is a JavaScript plugin which pins an element to a fixed position when it is scrolled beyond a certain point. It is a great way to create a navigation menu or any other element that needs to be always visible on the screen while scrolling.

Syntax

Here's the basic syntax for using Materialize Pushpin:

$('.selector').pushpin(options);
  • selector: The element that you want to pin.
  • options: An object that contains the following optional parameters:
    • top: The distance from the top of the screen to the pinned element. Default is 0.
    • bottom: The distance from the bottom of the screen to unpin the element. Default is infinity.
    • offset: The offset from the top or bottom of the screen where the pinned element will stop. Default is 0.
    • container: The container element that the pinned element will be attached to. Default is null.

Use

Materialize Pushpin can be used for various purposes, such as creating sticky headers, fixed sidebars and anchor links. It adds a nice touch of interactions to the website and ensures that important elements are always visible to the user.

Importance

Materialize Pushpin is a great way to keep certain elements visible on the screen while scrolling. It is easy to implement and highly customizable. It can be used to improve the usability and accessibility of the website.

Example

Here's an example of using Materialize Pushpin to create a sticky navigation menu:

<nav>
  <div class="nav-wrapper">
    <a href="#" class="brand-logo">Logo</a>
    <ul class="right hide-on-med-and-down">
      <li><a href="#">Link 1</a></li>
      <li><a href="#">Link 2</a></li>
      <li><a href="#">Link 3</a></li>
    </ul>
  </div>
</nav>

<script>
  $(document).ready(function(){
    $('.nav-wrapper').pushpin({
      top: 0,
      bottom: Infinity,
      offset: 0
    });
  });
</script>

Summary

Materialize Pushpin is a handy JavaScript plugin that pins an element to a fixed position when it is scrolled beyond a certain point. It is highly customizable and can be used for various purposes, such as creating sticky headers and fixed sidebars. It improves the usability and accessibility of the website and adds a nice touch of interactions.

Published on: