-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathreading-progressbar.js
48 lines (38 loc) · 1.09 KB
/
reading-progressbar.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
$(document).ready(function() {
var getMax = function(){
return $(document).height() - $(window).height();
};
var getValue = function(){
return $(window).scrollTop();
};
if ("max" in document.createElement("progress")) {
var progressBar = $("progress");
progressBar.attr({ max: getMax() });
$(document).on("scroll", function(){
progressBar.attr({ value: getValue() });
});
$(window).resize(function(){
progressBar.attr({ max: getMax(), value: getValue() });
});
} else {
var progressBar1 = $(".progress-bar"),
max = getMax(),
value, width;
var getWidth = function() {
// Calculate width in percentage
value = getValue();
width = (value/max) * 100;
width = width + "%";
return width;
};
var setWidth = function(){
progressBar1.css({ width: getWidth() });
};
$(document).on("scroll", setWidth);
$(window).on("resize", function(){
// Need to reset the Max attr
max = getMax();
setWidth();
});
}
});