-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotification.html
273 lines (238 loc) · 7.47 KB
/
notification.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
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
261
262
263
264
265
266
267
268
269
270
271
272
273
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Programmers Paradise - Notifications</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-image: url("logos/background9.jpeg");
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
width: 90%;
max-width: 1200px;
background: #ffffff;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
overflow: hidden;
position: relative;
padding: 20px;
}
h1 {
text-align: center;
color: #007bff;
margin-bottom: 20px;
}
.carousel {
position: relative;
display: none; /* Initially hidden */
}
.slides {
display: flex;
transition: transform 0.5s ease-in-out;
}
.slide {
min-width: 100%;
box-sizing: border-box;
padding: 20px;
}
.slide h2 {
background-color: #007bff;
color: #ffffff;
padding: 10px;
border-radius: 5px 5px 0 0;
margin: 0;
}
.slide p {
background-color: #f1f1f1;
padding: 20px;
border-radius: 0 0 5px 5px;
margin: 0;
}
.controls {
position: absolute;
top: 50%;
width: 100%;
display: flex;
justify-content: space-between;
transform: translateY(-50%);
}
.control-btn {
background-color: rgba(0, 0, 0, 0.5);
border: none;
color: white;
padding: 10px;
cursor: pointer;
}
.control-btn:hover {
background-color: rgba(0, 0, 0, 0.7);
}
.thumbnails {
display: flex;
justify-content: center;
margin-top: 20px;
}
.thumbnail {
width: 60px;
height: 60px;
background-color: #f1f1f1;
border-radius: 5px;
margin: 0 10px;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
}
.thumbnail.active {
border: 2px solid #007bff;
}
.view-all-btn {
display: block;
margin: 20px auto;
padding: 10px 20px;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
.view-all-btn:hover {
background-color: #0056b3;
}
.all-notifications {
display: none;
margin-top: 20px;
}
.notification {
background-color: #ffffff;
border: 1px solid #ddd;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
padding: 15px;
transition: transform 0.3s;
}
.notification:hover {
transform: translateY(-10px);
}
.notification h2 {
background-color: #007bff;
color: #ffffff;
padding: 10px;
margin: 0;
}
.notification p {
padding: 10px;
margin: 0;
}
@media screen and (max-width: 768px) {
.container {
padding: 10px;
}
.slide p,
.notification p {
padding: 15px;
}
.control-btn {
padding: 5px;
}
.thumbnail {
width: 40px;
height: 40px;
margin: 0 5px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Notifications</h1>
<div class="carousel">
<div class="slides">
<div class="slide">
<h2>Memeber Selection Test</h2>
<p>10 May 2024->Member Selection Test will be held on 18th MAY 2024 for this semester.</p>
</div>
<div class="slide">
<h2>Memeber Selection Test</h2>
<p>19 May 2024->Result Released</p>
</div>
<!-- Add more slides as needed -->
</div>
<div class="controls">
<button class="control-btn prev">Prev</button>
<button class="control-btn next">Next</button>
</div>
</div>
<div class="thumbnails">
<div class="thumbnail active" data-slide="0">1</div>
<div class="thumbnail" data-slide="1">2</div>
<div class="thumbnail" data-slide="2">3</div>
<!-- Add more thumbnails as needed -->
</div>
<button class="view-all-btn">View All Notifications</button>
<div class="all-notifications">
<div class="notification">
<h2>Memeber Selection Test</h2>
<p>10 May 2024->Member Selection Test will be held on 18th MAY 2024 for this semester.</p>
</div>
<div class="notification">
<h2>Memeber Selection Test</h2>
<p>19 May 2024->Result Released</p>
</div>
<!-- Add more notifications as needed -->
</div>
</div>
<script>
const slides = document.querySelector('.slides');
const slide = document.querySelectorAll('.slide');
const prev = document.querySelector('.prev');
const next = document.querySelector('.next');
const thumbnails = document.querySelectorAll('.thumbnail');
const viewAllBtn = document.querySelector('.view-all-btn');
const carousel = document.querySelector('.carousel');
const allNotifications = document.querySelector('.all-notifications');
let index = 0;
function showSlide(index) {
slides.style.transform = 'translateX(' + (-index * 100) + '%)';
thumbnails.forEach((thumbnail, i) => {
thumbnail.classList.toggle('active', i === index);
});
}
prev.addEventListener('click', () => {
index = (index > 0) ? index - 1 : slide.length - 1;
showSlide(index);
});
next.addEventListener('click', () => {
index = (index < slide.length - 1) ? index + 1 : 0;
showSlide(index);
});
thumbnails.forEach(thumbnail => {
thumbnail.addEventListener('click', () => {
index = parseInt(thumbnail.getAttribute('data-slide'));
showSlide(index);
});
});
// Auto-slide every 5 seconds
setInterval(() => {
next.click();
}, 5000);
// Show all notifications
viewAllBtn.addEventListener('click', () => {
carousel.style.display = 'none';
allNotifications.style.display = 'block';
viewAllBtn.style.display = 'none';
});
// Initial display
carousel.style.display = 'block';
</script>
</body>
</html>