This repository has been archived by the owner on Aug 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSocialGathering.html
95 lines (86 loc) · 3.08 KB
/
SocialGathering.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Social Gathering</title>
<link href="assets/images/logo-white.png" rel="icon" type="image/x-icon" />
<link href="styles/socialgathering.css" rel="stylesheet" type="text/css" />
<link href="styles/global.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header-template></header-template>
<p style="text-align: center; font-size: xx-large; font-weight: bold">Social Gathering</p>
<p class="border">Christmas Party</p>
<div class="slideshow-container">
<div class="mySlides1">
<img alt="" src="assets/images/EventPhoto/Christmas%20Party%202019/ChristmasParty2019%20(1).jpg" style="width: 100%" />
</div>
<div class="mySlides1">
<img alt="" src="assets/images/EventPhoto/Christmas%20Party%202019/ChristmasParty2019%20(6).jpg" style="width: 100%" />
</div>
<div class="mySlides1">
<img alt="" src="assets/images/EventPhoto/Christmas%20Party%202019/ChristmasParty2019%20(9).jpg" style="width: 100%" />
</div>
<a class="prev" onclick="plusSlides(-1, 0)">❮</a>
<a class="next" onclick="plusSlides(1, 0)">❯</a>
<br/>
<button class="button" onclick="document.location='christmasparty.html'" style="left: 400px">
<span>See More</span>
</button>
</div>
<br/>
<p class="border">Farewell Party </p>
<div class="slideshow-container">
<div class="mySlides2">
<img alt="" src="assets/images/EventPhoto/farewell%20party/farewell%20(5).jpg" style="width: 100%" />
</div>
<div class="mySlides2">
<img alt="" src="assets/images/EventPhoto/farewell%20party/farewell%20(11).jpg" style="width: 100%" />
</div>
<div class="mySlides2">
<img alt="" src="assets/images/EventPhoto/farewell%20party/farewell%20(14).jpg" style="width: 100%" />
</div>
<a class="prev" onclick="plusSlides(-1, 1)">❮</a>
<a class="next" onclick="plusSlides(1, 1)">❯</a>
<br/>
<button class="button" onclick="document.location='farewell.html'" style="left: 400px">
<span>See More</span>
</button>
</div>
<br/>
<footer-template></footer-template>
<script src="scripts/global.js"></script>
<script>
function myFunction() {
var txt;
if (confirm('Confirm to Subscribe Our Newsletter?')) {
txt = 'You pressed OK!';
} else {
txt = 'You pressed Cancel!';
}
document.getElementById('subscribe').innerHTML = txt;
}
var slideIndex = [1, 1];
var slideId = ['mySlides1', 'mySlides2'];
showSlides(1, 0);
showSlides(1, 1);
function plusSlides(n, no) {
showSlides((slideIndex[no] += n), no);
}
function showSlides(n, no) {
var i;
var x = document.getElementsByClassName(slideId[no]);
if (n > x.length) {
slideIndex[no] = 1;
}
if (n < 1) {
slideIndex[no] = x.length;
}
for (i = 0; i < x.length; i++) {
x[i].style.display = 'none';
}
x[slideIndex[no] - 1].style.display = 'block';
}
</script>
</body>
</html>