twbs--bootstrap/js/bootstrap-scrollspy.js

151 lines
4.3 KiB
JavaScript
Raw Normal View History

2011-09-11 01:14:57 -04:00
/* =============================================================
2012-09-05 13:00:57 -04:00
* bootstrap-scrollspy.js v2.1.2
2011-09-11 01:14:57 -04:00
* http://twitter.github.com/bootstrap/javascript.html#scrollspy
* =============================================================
2012-01-15 02:28:48 -05:00
* Copyright 2012 Twitter, Inc.
2011-09-11 01:14:57 -04:00
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
2011-09-11 01:24:31 -04:00
* ============================================================== */
!function ($) {
"use strict"; // jshint ;_;
2011-09-11 01:14:57 -04:00
2012-07-22 21:28:39 -04:00
/* SCROLLSPY CLASS DEFINITION
* ========================== */
2012-07-22 21:28:39 -04:00
function ScrollSpy(element, options) {
var process = $.proxy(this.process, this)
2012-01-25 01:33:33 -05:00
, $element = $(element).is('body') ? $(window) : $(element)
2012-01-28 04:35:13 -05:00
, href
this.options = $.extend({}, $.fn.scrollspy.defaults, options)
2012-07-22 21:28:39 -04:00
this.$scrollElement = $element.on('scroll.scroll-spy.data-api', process)
2012-01-25 01:33:33 -05:00
this.selector = (this.options.target
2012-01-28 04:35:13 -05:00
|| ((href = $(element).attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
|| '') + ' .nav li > a'
2012-04-26 00:52:05 -04:00
this.$body = $('body')
this.refresh()
this.process()
2011-09-11 01:14:57 -04:00
}
ScrollSpy.prototype = {
2011-12-01 01:42:22 -05:00
constructor: ScrollSpy
, refresh: function () {
var self = this
, $targets
this.offsets = $([])
this.targets = $([])
$targets = this.$body
.find(this.selector)
.map(function () {
2012-04-18 16:35:14 -04:00
var $el = $(this)
, href = $el.data('target') || $el.attr('href')
2012-03-22 02:51:32 -04:00
, $href = /^#\w/.test(href) && $(href)
2012-03-22 02:59:27 -04:00
return ( $href
2012-06-02 21:15:23 -04:00
&& $href.length
2012-03-22 02:59:27 -04:00
&& [[ $href.position().top, href ]] ) || null
})
.sort(function (a, b) { return a[0] - b[0] })
.each(function () {
self.offsets.push(this[0])
self.targets.push(this[1])
})
2011-09-11 01:14:57 -04:00
}
, process: function () {
var scrollTop = this.$scrollElement.scrollTop() + this.options.offset
, scrollHeight = this.$scrollElement[0].scrollHeight || this.$body[0].scrollHeight
, maxScroll = scrollHeight - this.$scrollElement.height()
2011-09-11 01:14:57 -04:00
, offsets = this.offsets
, targets = this.targets
, activeTarget = this.activeTarget
, i
if (scrollTop >= maxScroll) {
return activeTarget != (i = targets.last()[0])
2012-03-19 18:19:01 -04:00
&& this.activate ( i )
}
2011-09-11 01:14:57 -04: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 01:14:57 -04:00
}
}
, activate: function (target) {
var active
2012-04-18 16:35:14 -04:00
, selector
2011-09-11 01:14:57 -04:00
this.activeTarget = target
2012-04-15 02:24:19 -04:00
$(this.selector)
.parent('.active')
2011-09-11 01:14:57 -04:00
.removeClass('active')
2012-04-18 16:35:14 -04:00
selector = this.selector
+ '[data-target="' + target + '"],'
+ this.selector + '[href="' + target + '"]'
active = $(selector)
2011-09-11 01:14:57 -04:00
.parent('li')
.addClass('active')
if (active.parent('.dropdown-menu').length) {
2012-03-19 19:09:08 -04:00
active = active.closest('li.dropdown').addClass('active')
}
2012-03-19 19:09:08 -04:00
2012-03-19 23:24:46 -04:00
active.trigger('activate')
2011-09-11 01:14:57 -04:00
}
}
/* SCROLLSPY PLUGIN DEFINITION
* =========================== */
2012-07-22 21:28:39 -04:00
$.fn.scrollspy = function (option) {
return this.each(function () {
var $this = $(this)
, data = $this.data('scrollspy')
, options = typeof option == 'object' && option
if (!data) $this.data('scrollspy', (data = new ScrollSpy(this, options)))
if (typeof option == 'string') data[option]()
})
}
$.fn.scrollspy.Constructor = ScrollSpy
$.fn.scrollspy.defaults = {
offset: 10
}
/* SCROLLSPY DATA-API
2012-01-25 01:33:33 -05:00
* ================== */
2012-07-22 21:28:39 -04:00
$(window).on('load', function () {
2012-01-25 01:33:33 -05:00
$('[data-spy="scroll"]').each(function () {
var $spy = $(this)
$spy.scrollspy($spy.data())
})
})
}(window.jQuery);