Socket
Socket
Sign inDemoInstall

affixing-header

Package Overview
Dependencies
1
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

affixing-header

An affixing header that behaves normally as a user navigates down a page, but reveals itself naturally when a user scrolls or drags upwards. Inspired by iOS Safari, Medium, and others.


Version published
Maintainers
1
Weekly downloads
6
Install size
80.5 kB

Weekly downloads

Readme

Source

Affixing Header  Build Status

Create an affixing header that behaves normally as a user navigates down a page, but reveals itself naturally when a user scrolls or drags upwards. Inspired by iOS Safari, Medium, and others. See an example implementation to see what it’s about. Works on desktop and mobile browsers.

Sauce Test Status

Usage

The module itself is available in a wide range of flavors:

  1. As a CommonJS (Browserify-friendly) module (via UMD): dist/affixing-header.js
  2. As an AMD (RequireJS-friendly) module (also via UMD): dist/affixing-header.js
  3. As the window.affixingHeader global with dependencies bundled in: dist/affixing-header-bundled.js, or minified as dist/affixing-header-bundled-min.js
  4. As an ES6/ES2015 module (identified by jsnext:main in package.json), compatible with ES6-compatible module loaders like SystemJS or compilers like Babel: src/affixing-header.js

Exports a single function via require('affixing-header') if being used with a CommonJS or AMD module loader, or else exposes the function as a global named window.affixingHeader.

affixingHeader( element )

element Element

The DOM element to which the affixing behavior should be attached. Must be a single Element (e.g., the result of document.querySelector or document.getElementById), not a NodeList.

Dependencies

This package uses onscrolling, a requestAnimationFrame-based, performant, mobile-friendly scroll event handler, to listen for page scrolls, but has no other dependencies.

Compatibility

The scroll handling uses requestAnimationFrame, which is only available in IE10+. For older browsers, your header won’t affix to the top of the page when you scroll up, but you shouldn’t see any other issues (yay progressive enhancement). To add full support for older browsers, just include a requestAnimationFrame polyfill.

Keywords

FAQs

Last updated on 14 Apr 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc