twbs--bootstrap/js/affix.js

138 lines
4.0 KiB
JavaScript
Raw Normal View History

2013-05-22 02:30:33 +00:00
/* ========================================================================
2014-02-13 09:12:26 +00:00
* Bootstrap: affix.js v3.1.1
* http://getbootstrap.com/javascript/#affix
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
* ======================================================================== */
2012-07-23 01:28:39 +00:00
2014-01-01 14:42:41 +00:00
+function ($) {
'use strict';
2012-07-23 01:28:39 +00:00
2013-05-16 18:06:30 +00:00
// AFFIX CLASS DEFINITION
// ======================
2012-07-23 01:28:39 +00:00
var Affix = function (element, options) {
2013-05-16 18:06:30 +00:00
this.options = $.extend({}, Affix.DEFAULTS, options)
this.$window = $(window)
.on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this))
.on('click.bs.affix.data-api', $.proxy(this.checkPositionWithEventLoop, this))
2013-05-16 18:06:30 +00:00
this.$element = $(element)
this.affixed =
this.unpin =
this.pinnedOffset = null
2013-05-16 18:06:30 +00:00
2012-08-15 04:23:29 +00:00
this.checkPosition()
2012-07-23 01:28:39 +00:00
}
2013-07-26 06:30:13 +00:00
Affix.RESET = 'affix affix-top affix-bottom'
2013-05-16 18:06:30 +00:00
Affix.DEFAULTS = {
offset: 0
}
Affix.prototype.getPinnedOffset = function () {
if (this.pinnedOffset) return this.pinnedOffset
this.$element.removeClass(Affix.RESET).addClass('affix')
var scrollTop = this.$window.scrollTop()
var position = this.$element.offset()
return (this.pinnedOffset = position.top - scrollTop)
}
2013-05-16 18:06:30 +00:00
Affix.prototype.checkPositionWithEventLoop = function () {
setTimeout($.proxy(this.checkPosition, this), 1)
}
2012-07-23 01:28:39 +00:00
Affix.prototype.checkPosition = function () {
if (!this.$element.is(':visible')) return
var scrollHeight = $(document).height()
2013-05-16 18:06:30 +00:00
var scrollTop = this.$window.scrollTop()
var position = this.$element.offset()
var offset = this.options.offset
var offsetTop = offset.top
var offsetBottom = offset.bottom
if (this.affixed == 'top') position.top += scrollTop
2013-05-16 18:06:30 +00:00
if (typeof offset != 'object') offsetBottom = offsetTop = offset
if (typeof offsetTop == 'function') offsetTop = offset.top(this.$element)
if (typeof offsetBottom == 'function') offsetBottom = offset.bottom(this.$element)
2012-07-23 01:28:39 +00:00
2013-05-16 18:06:30 +00:00
var affix = this.unpin != null && (scrollTop + this.unpin <= position.top) ? false :
offsetBottom != null && (position.top + this.$element.height() >= scrollHeight - offsetBottom) ? 'bottom' :
offsetTop != null && (scrollTop <= offsetTop) ? 'top' : false
2012-07-23 01:28:39 +00:00
if (this.affixed === affix) return
2014-03-09 03:20:47 +00:00
if (this.unpin != null) this.$element.css('top', '')
2012-07-23 01:28:39 +00:00
var affixType = 'affix' + (affix ? '-' + affix : '')
var e = $.Event(affixType + '.bs.affix')
this.$element.trigger(e)
if (e.isDefaultPrevented()) return
2012-07-23 01:28:39 +00:00
this.affixed = affix
this.unpin = affix == 'bottom' ? this.getPinnedOffset() : null
2012-07-23 01:28:39 +00:00
this.$element
.removeClass(Affix.RESET)
.addClass(affixType)
.trigger($.Event(affixType.replace('affix', 'affixed')))
2013-07-26 06:30:13 +00:00
if (affix == 'bottom') {
this.$element.offset({ top: scrollHeight - offsetBottom - this.$element.height() })
2013-07-26 06:30:13 +00:00
}
2012-07-23 01:28:39 +00:00
}
2013-05-16 18:06:30 +00:00
// AFFIX PLUGIN DEFINITION
// =======================
2012-07-23 01:28:39 +00:00
var old = $.fn.affix
2012-07-23 01:28:39 +00:00
$.fn.affix = function (option) {
return this.each(function () {
2013-05-16 18:06:30 +00:00
var $this = $(this)
var data = $this.data('bs.affix')
2013-05-16 18:06:30 +00:00
var options = typeof option == 'object' && option
if (!data) $this.data('bs.affix', (data = new Affix(this, options)))
2012-07-23 01:28:39 +00:00
if (typeof option == 'string') data[option]()
})
}
$.fn.affix.Constructor = Affix
2013-05-16 18:06:30 +00:00
// AFFIX NO CONFLICT
// =================
$.fn.affix.noConflict = function () {
$.fn.affix = old
return this
}
2013-05-16 18:06:30 +00:00
// AFFIX DATA-API
// ==============
2012-07-23 01:28:39 +00:00
$(window).on('load', function () {
2012-07-23 01:28:39 +00:00
$('[data-spy="affix"]').each(function () {
var $spy = $(this)
2013-05-16 18:06:30 +00:00
var data = $spy.data()
2012-07-23 01:28:39 +00:00
data.offset = data.offset || {}
2013-05-16 18:06:30 +00:00
if (data.offsetBottom) data.offset.bottom = data.offsetBottom
if (data.offsetTop) data.offset.top = data.offsetTop
2012-07-23 01:28:39 +00:00
$spy.affix(data)
})
})
}(jQuery);