
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
hide-on-scroll
Advanced tools
Simple script to hide a navigation bar on scroll down and reveal it on scroll up
Install the module from npm
npm i hide-on-scroll --save
I suggest to bundle the module with browserify
browserify your-main-javascript-file.js > bundle.js
So that in your-main-javascript-file.js
you can just require()
or import
it.
/*! your-main-javascript-file.js */
import hideOnScroll from 'hide-on-scroll';
// or
var hideOnScroll = require('hide-on-scroll');
To actually make it work, you have two options
Just call the default exported function
import hideOnScroll from 'hide-on-scroll';
// or
var hideOnScroll = require('hide-on-scroll');
hideOnScroll({
navbarSelector: '.nav',
hidingClass: 'hidden'
});
This will execute the code on DOMContentLoaded (wrapped by jQuery's $(document).ready()
)
Execute the code when you need it
import {hideOnScroll} from 'hide-on-scroll';
// or
var hideOnScroll = require('hide-on-scroll').hideOnScroll;
function doSomething() {
// ...
hideOnScroll({
navbarSelector: '.nav',
hidingClass: 'hidden'
});
// ...
}
hideOnScroll({
// (string) a CSS, Sizzle-parsable selector to grab your navbar
navbarSelector: '.nav',
// (string) a CSS class that is applied when hiding the navbar
// OR (boolean) "false" to use inline styles to hide it
hidingClass: 'hidden',
// (integer, default: 200) milliseconds between scrolling status checks
pollingInterval: 200
});
Code is pretty easy and self-documenting. Anyway the code is heavily based on this article by Marius Craciunoiu.
Open an issue here on GitHub and notify me on Twitter
MIT
FAQs
hide navigation bar on scroll down, reveal on scroll up
The npm package hide-on-scroll receives a total of 1 weekly downloads. As such, hide-on-scroll popularity was classified as not popular.
We found that hide-on-scroll demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.