info@54
|
1 |
/* ========================================================================
|
info@54
|
2 |
* Bootstrap: affix.js v3.0.3
|
info@54
|
3 |
* http://getbootstrap.com/javascript/#affix
|
info@54
|
4 |
* ========================================================================
|
info@54
|
5 |
* Copyright 2013 Twitter, Inc.
|
info@54
|
6 |
*
|
info@54
|
7 |
* Licensed under the Apache License, Version 2.0 (the "License");
|
info@54
|
8 |
* you may not use this file except in compliance with the License.
|
info@54
|
9 |
* You may obtain a copy of the License at
|
info@54
|
10 |
*
|
info@54
|
11 |
* http://www.apache.org/licenses/LICENSE-2.0
|
info@54
|
12 |
*
|
info@54
|
13 |
* Unless required by applicable law or agreed to in writing, software
|
info@54
|
14 |
* distributed under the License is distributed on an "AS IS" BASIS,
|
info@54
|
15 |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
info@54
|
16 |
* See the License for the specific language governing permissions and
|
info@54
|
17 |
* limitations under the License.
|
info@54
|
18 |
* ======================================================================== */
|
info@54
|
19 |
|
info@54
|
20 |
|
info@54
|
21 |
+function ($) { "use strict";
|
info@54
|
22 |
|
info@54
|
23 |
// AFFIX CLASS DEFINITION
|
info@54
|
24 |
// ======================
|
info@54
|
25 |
|
info@54
|
26 |
var Affix = function (element, options) {
|
info@54
|
27 |
this.options = $.extend({}, Affix.DEFAULTS, options)
|
info@54
|
28 |
this.$window = $(window)
|
info@54
|
29 |
.on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this))
|
info@54
|
30 |
.on('click.bs.affix.data-api', $.proxy(this.checkPositionWithEventLoop, this))
|
info@54
|
31 |
|
info@54
|
32 |
this.$element = $(element)
|
info@54
|
33 |
this.affixed =
|
info@54
|
34 |
this.unpin = null
|
info@54
|
35 |
|
info@54
|
36 |
this.checkPosition()
|
info@54
|
37 |
}
|
info@54
|
38 |
|
info@54
|
39 |
Affix.RESET = 'affix affix-top affix-bottom'
|
info@54
|
40 |
|
info@54
|
41 |
Affix.DEFAULTS = {
|
info@54
|
42 |
offset: 0
|
info@54
|
43 |
}
|
info@54
|
44 |
|
info@54
|
45 |
Affix.prototype.checkPositionWithEventLoop = function () {
|
info@54
|
46 |
setTimeout($.proxy(this.checkPosition, this), 1)
|
info@54
|
47 |
}
|
info@54
|
48 |
|
info@54
|
49 |
Affix.prototype.checkPosition = function () {
|
info@54
|
50 |
if (!this.$element.is(':visible')) return
|
info@54
|
51 |
|
info@54
|
52 |
var scrollHeight = $(document).height()
|
info@54
|
53 |
var scrollTop = this.$window.scrollTop()
|
info@54
|
54 |
var position = this.$element.offset()
|
info@54
|
55 |
var offset = this.options.offset
|
info@54
|
56 |
var offsetTop = offset.top
|
info@54
|
57 |
var offsetBottom = offset.bottom
|
info@54
|
58 |
|
info@54
|
59 |
if (typeof offset != 'object') offsetBottom = offsetTop = offset
|
info@54
|
60 |
if (typeof offsetTop == 'function') offsetTop = offset.top()
|
info@54
|
61 |
if (typeof offsetBottom == 'function') offsetBottom = offset.bottom()
|
info@54
|
62 |
|
info@54
|
63 |
var affix = this.unpin != null && (scrollTop + this.unpin <= position.top) ? false :
|
info@54
|
64 |
offsetBottom != null && (position.top + this.$element.height() >= scrollHeight - offsetBottom) ? 'bottom' :
|
info@54
|
65 |
offsetTop != null && (scrollTop <= offsetTop) ? 'top' : false
|
info@54
|
66 |
|
info@54
|
67 |
if (this.affixed === affix) return
|
info@54
|
68 |
if (this.unpin) this.$element.css('top', '')
|
info@54
|
69 |
|
info@54
|
70 |
this.affixed = affix
|
info@54
|
71 |
this.unpin = affix == 'bottom' ? position.top - scrollTop : null
|
info@54
|
72 |
|
info@54
|
73 |
this.$element.removeClass(Affix.RESET).addClass('affix' + (affix ? '-' + affix : ''))
|
info@54
|
74 |
|
info@54
|
75 |
if (affix == 'bottom') {
|
info@54
|
76 |
this.$element.offset({ top: document.body.offsetHeight - offsetBottom - this.$element.height() })
|
info@54
|
77 |
}
|
info@54
|
78 |
}
|
info@54
|
79 |
|
info@54
|
80 |
|
info@54
|
81 |
// AFFIX PLUGIN DEFINITION
|
info@54
|
82 |
// =======================
|
info@54
|
83 |
|
info@54
|
84 |
var old = $.fn.affix
|
info@54
|
85 |
|
info@54
|
86 |
$.fn.affix = function (option) {
|
info@54
|
87 |
return this.each(function () {
|
info@54
|
88 |
var $this = $(this)
|
info@54
|
89 |
var data = $this.data('bs.affix')
|
info@54
|
90 |
var options = typeof option == 'object' && option
|
info@54
|
91 |
|
info@54
|
92 |
if (!data) $this.data('bs.affix', (data = new Affix(this, options)))
|
info@54
|
93 |
if (typeof option == 'string') data[option]()
|
info@54
|
94 |
})
|
info@54
|
95 |
}
|
info@54
|
96 |
|
info@54
|
97 |
$.fn.affix.Constructor = Affix
|
info@54
|
98 |
|
info@54
|
99 |
|
info@54
|
100 |
// AFFIX NO CONFLICT
|
info@54
|
101 |
// =================
|
info@54
|
102 |
|
info@54
|
103 |
$.fn.affix.noConflict = function () {
|
info@54
|
104 |
$.fn.affix = old
|
info@54
|
105 |
return this
|
info@54
|
106 |
}
|
info@54
|
107 |
|
info@54
|
108 |
|
info@54
|
109 |
// AFFIX DATA-API
|
info@54
|
110 |
// ==============
|
info@54
|
111 |
|
info@54
|
112 |
$(window).on('load', function () {
|
info@54
|
113 |
$('[data-spy="affix"]').each(function () {
|
info@54
|
114 |
var $spy = $(this)
|
info@54
|
115 |
var data = $spy.data()
|
info@54
|
116 |
|
info@54
|
117 |
data.offset = data.offset || {}
|
info@54
|
118 |
|
info@54
|
119 |
if (data.offsetBottom) data.offset.bottom = data.offsetBottom
|
info@54
|
120 |
if (data.offsetTop) data.offset.top = data.offsetTop
|
info@54
|
121 |
|
info@54
|
122 |
$spy.affix(data)
|
info@54
|
123 |
})
|
info@54
|
124 |
})
|
info@54
|
125 |
|
info@54
|
126 |
}(jQuery);
|