-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
260 lines (218 loc) · 6.54 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
// Landing Page Animation
document.addEventListener('DOMContentLoaded', buildDiv());
function buildDiv() {
for (i=0; i < 1984; i++) {
var div = document.createElement("DIV");
div.className = "particle";
document.getElementById("particle_box").appendChild(div);
}
}
// Nav Bar Sticky Add Class On Scroll
window.onscroll = function() {myFunction()};
var navbar = document.getElementById("nav_bar");
var sticky = navbar.offsetTop;
function myFunction() {
if (window.pageYOffset >= sticky) {
navbar.classList.add("sticky")
} else {
navbar.classList.remove("sticky");
}
}
// Mobile Menu Open/Close
function openNav() {
document.getElementById("myNav").style.width = "100%";
}
function closeNav() {
document.getElementById("myNav").style.width = "0%";
}
// Modal Galleries For Portfolio
// Gallery One
function openModal1() {
document.getElementById("myModal1").style.display = "block";
}
function closeModal1() {
document.getElementById("myModal1").style.display = "none";
}
var slideIndex = 1;
showSlides1(slideIndex);
function plusSlides1(n) {
showSlides1(slideIndex += n);
}
function currentSlide1(n) {
showSlides1(slideIndex = n);
}
function showSlides1(n) {
var i;
var slides = document.getElementsByClassName("mySlides1");
var dots = document.getElementsByClassName("demo1");
var captionText = document.getElementById("caption1");
if (n > slides.length) {slideIndex = 1}
if (n < 1) {slideIndex = slides.length}
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " active";
captionText.innerHTML = dots[slideIndex-1].alt;
}
// Gallery Two
function openModal2() {
document.getElementById("myModal2").style.display = "block";
}
function closeModal2() {
document.getElementById("myModal2").style.display = "none";
}
var slideIndex = 1;
showSlides2(slideIndex);
function plusSlides2(n) {
showSlides2(slideIndex += n);
}
function currentSlide2(n) {
showSlides2(slideIndex = n);
}
function showSlides2(n) {
var i;
var slides = document.getElementsByClassName("mySlides2");
var dots = document.getElementsByClassName("demo2");
var captionText = document.getElementById("caption2");
if (n > slides.length) {slideIndex = 1}
if (n < 1) {slideIndex = slides.length}
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " active";
captionText.innerHTML = dots[slideIndex-1].alt;
}
// Gallery Three
function openModal3() {
document.getElementById("myModal3").style.display = "block";
}
function closeModal3() {
document.getElementById("myModal3").style.display = "none";
}
var slideIndex = 1;
showSlides3(slideIndex);
function plusSlides3(n) {
showSlides3(slideIndex += n);
}
function currentSlide3(n) {
showSlides3(slideIndex = n);
}
function showSlides3(n) {
var i;
var slides = document.getElementsByClassName("mySlides3");
var dots = document.getElementsByClassName("demo3");
var captionText = document.getElementById("caption3");
if (n > slides.length) {slideIndex = 1}
if (n < 1) {slideIndex = slides.length}
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " active";
captionText.innerHTML = dots[slideIndex-1].alt;
}
// Gallery Four
function openModal4() {
document.getElementById("myModal4").style.display = "block";
}
function closeModal4() {
document.getElementById("myModal4").style.display = "none";
}
var slideIndex = 1;
showSlides4(slideIndex);
function plusSlides4(n) {
showSlides4(slideIndex += n);
}
function currentSlide4(n) {
showSlides4(slideIndex = n);
}
function showSlides4(n) {
var i;
var slides = document.getElementsByClassName("mySlides4");
var dots = document.getElementsByClassName("demo4");
var captionText = document.getElementById("caption4");
if (n > slides.length) {slideIndex = 1}
if (n < 1) {slideIndex = slides.length}
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " active";
captionText.innerHTML = dots[slideIndex-1].alt;
}
// Gallery Five
function openModal5() {
document.getElementById("myModal5").style.display = "block";
}
function closeModal5() {
document.getElementById("myModal5").style.display = "none";
}
var slideIndex = 1;
showSlides5(slideIndex);
function plusSlides5(n) {
showSlides5(slideIndex += n);
}
function currentSlide5(n) {
showSlides5(slideIndex = n);
}
function showSlides5(n) {
var i;
var slides = document.getElementsByClassName("mySlides5");
var dots = document.getElementsByClassName("demo5");
var captionText = document.getElementById("caption5");
if (n > slides.length) {slideIndex = 1}
if (n < 1) {slideIndex = slides.length}
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex-1].style.display = "block";
}
// Gallery Six
function openModal6() {
document.getElementById("myModal6").style.display = "block";
}
function closeModal6() {
document.getElementById("myModal6").style.display = "none";
}
var slideIndex = 1;
showSlides6(slideIndex);
function plusSlides6(n) {
showSlides6(slideIndex += n);
}
function currentSlide6(n) {
showSlides6(slideIndex = n);
}
function showSlides6(n) {
var i;
var slides = document.getElementsByClassName("mySlides6");
var dots = document.getElementsByClassName("demo6");
var captionText = document.getElementById("caption6");
if (n > slides.length) {slideIndex = 1}
if (n < 1) {slideIndex = slides.length}
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " active";
captionText.innerHTML = dots[slideIndex-1].alt;
}