-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
99 lines (79 loc) · 2.27 KB
/
script.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
var dot1 = $("#dot1 > ul > li");
var contents = $("#contents > div");
dot1.on("click",function(e){
e.preventDefault();
var target = $(this);
var index = target.index();
var section = contents.eq(index);
var offset = section.offset().top;
$("body, html").animate({scrollTop:offset},400);
$(window).on("scroll",function(){
var wScroll =$(this).scrollTop();
if(wScroll >= contents.eq(0).offset().top){
dot1.removeClass("on");
dot1.eq(0).addClass("on");
}
if(wScroll >= contents.eq(1).offset().top){
dot1.removeClass("on");
dot1.eq(1).addClass("on");
}
if(wScroll >= contents.eq(2).offset().top){
dot1.removeClass("on");
dot1.eq(2).addClass("on");
}
if(wScroll >= contents.eq(3).offset().top){
dot1.removeClass("on");
dot1.eq(3).addClass("on");
}
if(wScroll >= contents.eq(4).offset().top){
dot1.removeClass("on");
dot1.eq(4).addClass("on");
}
if(wScroll >= contents.eq(5).offset().top){
dot1.removeClass("on");
dot1.eq(5).addClass("on");
}
});
});
var dot2 = $("#dot2 > ul > li");
var contents = $("#contents > div");
dot2.on("click",function(e){
e.preventDefault();
var target = $(this);
var index = target.index();
var section = contents.eq(index);
var offset = section.offset().top;
$("body, html").animate({scrollTop:offset},400);
$(window).on("scroll",function(){
var wScroll =$(this).scrollTop();
if(wScroll >= contents.eq(0).offset().top){
dot2.removeClass("on");
dot2.eq(0).addClass("on");
}
if(wScroll >= contents.eq(1).offset().top){
dot2.removeClass("on");
dot2.eq(1).addClass("on");
}
if(wScroll >= contents.eq(2).offset().top){
dot2.removeClass("on");
dot2.eq(2).addClass("on");
}
if(wScroll >= contents.eq(3).offset().top){
dot2.removeClass("on");
dot2.eq(3).addClass("on");
}
if(wScroll >= contents.eq(4).offset().top){
dot2.removeClass("on");
dot2.eq(4).addClass("on");
}
if(wScroll >= contents.eq(5).offset().top){
dot2.removeClass("on");
dot2.eq(5).addClass("on");
}
});
});
// interactive slider
document.getElementById("q1").oninput = function() {
var value = ((this.value - this.min) / (this.max - this.min)) * 100;
this.style.background = 'linear-gradient(to right, black ' + value + '%, #aaa ' + value + '%)';
};