-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfixedbg.js
79 lines (64 loc) · 1.93 KB
/
fixedbg.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*
* fixedBG
*
*
* Copyright (c) 2014 Nattawat Nonsung
* Licensed under the MIT license.
*/
(function ($) {
var setHeightToWindowSize = function(dom) {
var paddingTop = dom.css('padding-top');
paddingTop = +paddingTop.substring(0, paddingTop.length -2);
var paddingButtom = dom.css('padding-bottom');
paddingButtom = +paddingButtom.substring(0, paddingButtom.length -2);
var height = $(window).innerHeight() - paddingTop - paddingButtom;
dom.css("min-height", (height+"px"));
// el's top position
var elTop = dom.offset().top;
dom.data("elTop", elTop);
// el's bottom position
var elBottom = elTop + dom.height() + paddingTop + paddingButtom;
dom.data("elBottom", elBottom);
};
// Collection method.
$.fn.fixedBG = function (options) {
var self = this;
// Define default setting
var settings = $.extend ({
autoAdjust: true
}, options );
this.each( function() {
setHeightToWindowSize($(this));
});
this.first().css("background-attachment", "fixed");
/*
Auto adjust by:
- set background-size: cover; so that it try to make full image visible
- set background-repeat: no-repeat;
*/
if (settings.autoAdjust) {
this.css ({
"background-size": "cover",
"background-repeat": "no-repeat"
});
}
$(window).resize( function() {
self.each( function() {
setHeightToWindowSize($(this));
});
});
$(window).scroll( function() {
var docViewTop = $(window).scrollTop();
self.each( function() {
var elTop = $(this).data("elTop");
var elBottom = $(this).data("elBottom");
if (docViewTop >= elTop && elBottom > docViewTop) {
self.css("background-attachment", "scroll");
// div is in the visible window
$(this).css("background-attachment", "fixed");
}
});
});
return this;
};
}(jQuery));