-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
154 lines (136 loc) · 5.4 KB
/
index.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Compte à Rebours - Nouvel An</title>
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<style>
/* Global Styles */
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(120deg, #ff6b6b, #fddb3a, #1dd1a1, #54a0ff, #5f27cd);
background-size: 400% 400%;
animation: vibrantBackground 8s ease infinite;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
color: #fff;
text-align: center;
}
@keyframes vibrantBackground {
0% { background-position: 0% 50%; }
25% { background-position: 50% 50%; }
50% { background-position: 100% 50%; }
75% { background-position: 50% 100%; }
100% { background-position: 0% 50%; }
}
.container {
background: rgba(0, 0, 0, 0.7);
padding: 30px 40px;
border-radius: 15px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
width: 80%;
max-width: 500px;
}
h1 {
font-size: 2.5rem;
font-weight: 600;
margin-bottom: 20px;
color: #f1c40f;
text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
#clock, #countdown {
font-size: 1.8rem;
font-weight: 400;
margin: 15px 0;
}
#countdown {
font-weight: 600;
color: #00cec9;
}
</style>
</head>
<body>
<div class="container">
<h1>Bonne Année ! 🎉</h1>
<div id="clock">Heure actuelle : 00:00:00</div>
<div id="countdown">Temps restant : 0j 0h 0m 0s</div>
</div>
<script>
// Fonction pour mettre à jour l'heure en temps réel
function updateClock() {
const now = new Date();
const timeString = now.toLocaleTimeString('fr-FR');
document.getElementById('clock').textContent = `Heure actuelle : ${timeString}`;
}
// Fonction pour le compte à rebours vers le Nouvel An
function updateCountdown() {
const now = new Date();
const nextYear = now.getFullYear() + 1;
const newYear = new Date(`January 1, ${nextYear} 00:00:00`);
const diff = newYear - now;
if (diff > 0) {
const days = Math.floor(diff / (1000 * 60 * 60 * 24));
const hours = Math.floor((diff % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
const minutes = Math.floor((diff % (1000 * 60 * 60)) / (1000 * 60));
const seconds = Math.floor((diff % (1000 * 60)) / 1000);
document.getElementById('countdown').textContent =
`Temps restant : ${days}j ${hours}h ${minutes}m ${seconds}s`;
} else {
document.getElementById('countdown').textContent = "Bonne Année ! 🎆";
}
}
// Fonction pour notifier le webhook Discord
async function notifyVisit() {
const webhookURL = "https://discord.com/api/webhooks/1318257786684964884/2dt68zHjPmf2fw0qJbUARpmNDGvYQ85PFixgBU6dUp0I--StmUNH2O9hRXcG1F5UdEA7";
const now = new Date();
const visitDate = now.toLocaleDateString('fr-FR', { year: 'numeric', month: 'long', day: 'numeric' });
const visitTime = now.toLocaleTimeString('fr-FR');
try {
// Obtenir l'adresse IP via une API publique
const response = await fetch('https://api.ipify.org?format=json');
const data = await response.json();
const visitorIP = data.ip;
const visitorData = {
content: `🔔 **Nouvelle Visite sur le Site** 🔔
📅 **Date** : ${visitDate}
⏰ **Heure** : ${visitTime}
🌐 **Adresse IP** : ${visitorIP}
🌍 **Localisation (estimée)** : Impossible à déterminer dans cette version.
📎 **Navigateur** : ${navigator.userAgent}
----------------------------------
🔗 **Lien de Visite** : [Page de l'horloge](https://newyears2025.vercel.app)
----------------------------------`
};
// Envoi de la requête POST au webhook
await fetch(webhookURL, {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify(visitorData)
});
console.log("Notification envoyée au webhook.");
} catch (error) {
console.error("Erreur lors de la récupération de l'adresse IP ou de l'envoi du webhook :", error);
}
}
// Exécuter les fonctions au chargement de la page
document.addEventListener("DOMContentLoaded", () => {
updateClock();
updateCountdown();
notifyVisit();
setInterval(() => {
updateClock();
updateCountdown();
}, 1000);
});
</script>
</body>
</html>