1.0.3 • Published 8 years ago

scroll-spy v1.0.3

Weekly downloads
45
License
MIT
Repository
github
Last release
8 years ago

Scroll-spy Build Status NPM Version

A light weight scroll spy library in vanilla js.

Demo

demo

spy

Installation

bower

$ bower install scroll-spy --save

npm

$ npm install scroll-spy --save

Usage

scrollSpy.init({
  nodeList: document.querySelectorAll('.link') // require
  activeClassName: 'active', // optional , default: active
  scrollTarget: document  // optional , default: document
});

nodeList :

  • With vanilla js: document.querySelectorAll('.toc-link')
  • With jQuery: $('.toc-link')

License

MIT