1.6.0 • Published 8 years ago

scrollspy v1.6.0

Weekly downloads
248
License
ISC
Repository
github
Last release
8 years ago

scrollspy

NPM version Downloads Dependency Status

scrollspy for jQuery

Installation

npm i scrollspy

Usage

Demo Page

var scrollspy = require('scrollspy')

$('.scroll-class').each(function() {
	var me = this
	var $me = $(me)
	scrollspy.add(me, {
		scrollIn: function() {
			$me.addClass('show')
		},
		scrollOut: function() {
			$me.removeClass('show')
		}
	})
})

Api

Add

  • scrollspy.add(element, opt)
  • scrollspy.add(element, scrollIn, scrollOut[, opt])
  • scrollspy.add(element, className[, opt])

options

  • scrollIn scroll in handler
  • scrollOut scroll out handler
  • className add class when scroll in, remove class when scroll out
  • once if trigger scroll in(no scroll out) just once, default false

Remove

remove element from checklist elements when scrolling

  • scrollspy.remove(el)

Tip

elements been scroll spied should be shown, which means display: none will be ignored

License

License

1.6.0

8 years ago

1.5.0

9 years ago

1.4.0

9 years ago

1.3.8

10 years ago

1.3.7

10 years ago

1.3.6

10 years ago

1.3.5

10 years ago

1.3.4

10 years ago

1.3.3

10 years ago

1.3.2

10 years ago

1.3.1

10 years ago

1.3.0

10 years ago

1.2.0

10 years ago

1.1.4

10 years ago

1.1.3

10 years ago

1.1.2

10 years ago

1.1.0

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago