forked from ayush-that/FinVeda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
events.html
292 lines (250 loc) · 9.16 KB
/
events.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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Create and Delete Events</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f2f5;
display: flex;
align-items: center;
flex-direction: column;
margin: 0;
padding: 20px;
background: linear-gradient(45deg, #ff6b6b, #f7b731, #3bde5c);
background-repeat: no-repeat;
height: 950px;
}
.container {
margin-top: 150px;
background-color: #fff;
padding: 20px;
width: 90%;
max-width: 500px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
border-radius: 8px;
margin-bottom: 20px;
}
h2 {
text-align: center;
color: #333;
}
form {
display: flex;
flex-direction: column;
}
input, textarea {
padding: 10px;
margin: 8px 0;
border: 1px solid #ccc;
border-radius: 4px;
width: 100%;
}
button {
padding: 10px;
background-color: #28a745;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: #218838;
}
.event-list {
margin-top: 20px;
}
.event-item {
background-color: #e9ecef;
padding: 10px;
margin-bottom: 10px;
border-left: 4px solid #28a745;
border-radius: 4px;
position: relative;
}
.event-title {
font-weight: bold;
margin: 0;
}
.event-description, .event-details {
margin: 5px 0 0 0;
font-size: 0.9em;
}
.delete-btn {
position: absolute;
top: 10px;
right: 10px;
background-color: #dc3545;
color: white;
border: none;
border-radius: 4px;
padding: 5px 10px;
cursor: pointer;
}
.delete-btn:hover {
background-color: #c82333;
}
</style>
</head>
<body>
<style>
.circle {
position: absolute;
width: 25px;
height: 25px;
border-radius: 50%;
pointer-events: none;
background: radial-gradient(circle, rgba(73, 232, 247, 0.466), rgba(141, 38, 172, 0.5));
transition: transform 0.1s, left 0.1s, top 0.1s;
}
.circle-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 9999;
}
</style>
<body>
<div class="circle-container">
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
</div>
<script>
document.addEventListener("DOMContentLoaded", function () {
const coords = { x: 0, y: 0 };
const circles = document.querySelectorAll(".circle");
circles.forEach(function (circle) {
circle.x = 0;
circle.y = 0;
});
window.addEventListener("mousemove", function (e) {
coords.x = e.pageX;
coords.y = e.pageY - window.scrollY; // Adjust for vertical scroll position
});
function animateCircles() {
let x = coords.x;
let y = coords.y;
circles.forEach(function (circle, index) {
circle.style.left = `${x - 12}px`;
circle.style.top = `${y - 12}px`;
circle.style.transform = `scale(${(circles.length - index) / circles.length})`;
const nextCircle = circles[index + 1] || circles[0];
circle.x = x;
circle.y = y;
x += (nextCircle.x - x) * 0.3;
y += (nextCircle.y - y) * 0.3;
});
requestAnimationFrame(animateCircles);
}
animateCircles();
});
</script>
</body>
<div class="container">
<h2>Create a New Event</h2>
<form id="eventForm">
<input type="text" id="eventName" placeholder="Event Name" required>
<textarea id="eventDescription" placeholder="Event Description" rows="4" required></textarea>
<label for="eventDate">Date:</label>
<input type="date" id="eventDate" required>
<input type="hidden" id="eventDay" required> <!-- Hidden input to store day of week -->
<label for="eventTime">Time:</label>
<input type="time" id="eventTime" required>
<button type="submit">Add Event</button>
</form>
</div>
<div class="container event-list">
<h2>Upcoming Events</h2>
<div id="eventsContainer">
<!-- Events will appear here -->
</div>
</div>
<script>
// Function to get the day of the week from a date
function getDayOfWeek(dateString) {
const date = new Date(dateString);
const days = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
return days[date.getDay()];
}
// Update day automatically when date is selected
document.getElementById("eventDate").addEventListener("change", function() {
const eventDate = this.value;
const eventDay = getDayOfWeek(eventDate);
document.getElementById("eventDay").value = eventDay; // Store the day in hidden input
});
// Handle event form submission
document.getElementById("eventForm").addEventListener("submit", function(event) {
event.preventDefault();
const eventName = document.getElementById("eventName").value;
const eventDescription = document.getElementById("eventDescription").value;
const eventDate = document.getElementById("eventDate").value;
const eventDay = document.getElementById("eventDay").value; // Get day from hidden input
const eventTime = document.getElementById("eventTime").value;
// Create a new event element
const eventItem = document.createElement("div");
eventItem.classList.add("event-item");
// Event title
const titleElement = document.createElement("p");
titleElement.classList.add("event-title");
titleElement.textContent = eventName;
eventItem.appendChild(titleElement);
// Event description
const descriptionElement = document.createElement("p");
descriptionElement.classList.add("event-description");
descriptionElement.textContent = eventDescription;
eventItem.appendChild(descriptionElement);
// Event date, day, and time
const detailsElement = document.createElement("p");
detailsElement.classList.add("event-details");
detailsElement.innerHTML = `<strong>Date:</strong> ${eventDate} | <strong>Day:</strong> ${eventDay} | <strong>Time:</strong> ${eventTime}`;
eventItem.appendChild(detailsElement);
// Create Delete button for the event
const deleteButton = document.createElement("button");
deleteButton.classList.add("delete-btn");
deleteButton.textContent = "Delete";
deleteButton.onclick = function() {
eventItem.remove(); // Remove event from list
};
eventItem.appendChild(deleteButton);
// Add the new event to the events container
document.getElementById("eventsContainer").appendChild(eventItem);
// Clear the form fields
document.getElementById("eventForm").reset();
});
</script>
</body>
</html>