twbs--bootstrap/js/scrollspy.js

157 lines
4.4 KiB
JavaScript
Raw Normal View History

2013-05-22 02:30:33 +00:00
/* ========================================================================
2014-02-13 09:12:26 +00:00
* Bootstrap: scrollspy.js v3.1.1
* http://getbootstrap.com/javascript/#scrollspy
2013-05-22 02:30:33 +00:00
* ========================================================================
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
2013-05-22 02:30:33 +00:00
* ======================================================================== */
2011-09-11 05:24:31 +00:00
2014-01-01 14:42:41 +00:00
+function ($) {
'use strict';
2013-05-17 00:18:15 +00:00
// SCROLLSPY CLASS DEFINITION
// ==========================
2012-07-23 01:28:39 +00:00
function ScrollSpy(element, options) {
2013-05-17 00:18:15 +00:00
var href
var process = $.proxy(this.process, this)
this.$element = $(element).is('body') ? $(window) : $(element)
2013-05-17 00:18:15 +00:00
this.$body = $('body')
this.$scrollElement = this.$element.on('scroll.bs.scrollspy', process)
2013-05-17 00:18:15 +00:00
this.options = $.extend({}, ScrollSpy.DEFAULTS, options)
this.selector = (this.options.target
2012-01-28 09:35:13 +00:00
|| ((href = $(element).attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
|| '') + ' .nav li > a'
2013-05-17 00:18:15 +00:00
this.offsets = $([])
this.targets = $([])
this.activeTarget = null
this.refresh()
this.process()
2011-09-11 05:14:57 +00:00
}
2013-05-17 00:18:15 +00:00
ScrollSpy.DEFAULTS = {
offset: 10
}
ScrollSpy.prototype.refresh = function () {
var offsetMethod = this.$element[0] == window ? 'offset' : 'position'
2013-05-17 00:18:15 +00:00
this.offsets = $([])
this.targets = $([])
var self = this
2014-03-01 16:19:50 +00:00
this.$body
2013-05-17 00:18:15 +00:00
.find(this.selector)
.filter(':visible')
2013-05-17 00:18:15 +00:00
.map(function () {
var $el = $(this)
var href = $el.data('target') || $el.attr('href')
var $href = /^#./.test(href) && $(href)
2013-05-17 00:18:15 +00:00
return ($href
&& $href.length
&& $href.is(':visible')
&& [[ $href[offsetMethod]().top + (!$.isWindow(self.$scrollElement.get(0)) && self.$scrollElement.scrollTop()), href ]]) || null
2013-05-17 00:18:15 +00:00
})
.sort(function (a, b) { return a[0] - b[0] })
.each(function () {
self.offsets.push(this[0])
self.targets.push(this[1])
})
}
2011-09-11 05:14:57 +00:00
2013-05-17 00:18:15 +00:00
ScrollSpy.prototype.process = function () {
var scrollTop = this.$scrollElement.scrollTop() + this.options.offset
var scrollHeight = this.$scrollElement[0].scrollHeight || Math.max(this.$body[0].scrollHeight, document.documentElement.scrollHeight)
2013-05-17 00:18:15 +00:00
var maxScroll = scrollHeight - this.$scrollElement.height()
var offsets = this.offsets
var targets = this.targets
var activeTarget = this.activeTarget
var i
if (scrollTop >= maxScroll) {
return activeTarget != (i = targets.last()[0]) && this.activate(i)
}
if (activeTarget && scrollTop <= offsets[0]) {
return activeTarget != (i = targets[0]) && this.activate(i)
}
2013-05-17 00:18:15 +00:00
for (i = offsets.length; i--;) {
activeTarget != targets[i]
&& scrollTop >= offsets[i]
&& (!offsets[i + 1] || scrollTop <= offsets[i + 1])
&& this.activate( targets[i] )
}
2011-09-11 05:14:57 +00:00
}
2013-05-17 00:18:15 +00:00
ScrollSpy.prototype.activate = function (target) {
this.activeTarget = target
$(this.selector)
2013-12-26 04:33:05 +00:00
.parentsUntil(this.options.target, '.active')
2013-05-17 00:18:15 +00:00
.removeClass('active')
2013-12-19 14:32:37 +00:00
var selector = this.selector +
'[data-target="' + target + '"],' +
this.selector + '[href="' + target + '"]'
2013-05-17 00:18:15 +00:00
var active = $(selector)
.parents('li')
.addClass('active')
2013-12-19 14:32:37 +00:00
if (active.parent('.dropdown-menu').length) {
2013-05-17 00:18:15 +00:00
active = active
.closest('li.dropdown')
.addClass('active')
}
active.trigger('activate.bs.scrollspy')
2013-05-17 00:18:15 +00:00
}
// SCROLLSPY PLUGIN DEFINITION
// ===========================
function Plugin(option) {
return this.each(function () {
2013-05-17 00:18:15 +00:00
var $this = $(this)
var data = $this.data('bs.scrollspy')
2013-05-17 00:18:15 +00:00
var options = typeof option == 'object' && option
if (!data) $this.data('bs.scrollspy', (data = new ScrollSpy(this, options)))
if (typeof option == 'string') data[option]()
})
}
var old = $.fn.scrollspy
$.fn.scrollspy = Plugin
$.fn.scrollspy.Constructor = ScrollSpy
2013-05-17 00:18:15 +00:00
// SCROLLSPY NO CONFLICT
// =====================
$.fn.scrollspy.noConflict = function () {
$.fn.scrollspy = old
return this
}
2013-05-17 00:18:15 +00:00
// SCROLLSPY DATA-API
// ==================
$(window).on('load.bs.scrollspy.data-api', function () {
2012-01-25 06:33:33 +00:00
$('[data-spy="scroll"]').each(function () {
var $spy = $(this)
Plugin.call($spy, $spy.data())
2012-01-25 06:33:33 +00:00
})
})
}(jQuery);