-
Notifications
You must be signed in to change notification settings - Fork 189
/
share_score.html
222 lines (201 loc) · 6.42 KB
/
share_score.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bruno+Ace&family=Bruno+Ace+SC&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet">
<title>Share Your Score</title>
<style>
/*basic styling */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
font-family: "Bruno Ace", sans-serif;
background-color: #121212;
color: #ffffff;
text-align: center;
}
/* Container for the score and sharing options */
.score-container {
padding: 20px;
max-width: 600px;
background: #1f1f1f;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
/* Score display styling */
.score-display {
font-size: 3em;
font-weight: bold;
color: #4caf50;
margin: 20px 0;
}
/* Share text styling */
.share-text {
font-size: 1.2em;
margin: 10px 0 20px;
color: #bbbbbb;
}
/* Social media buttons */
.share-buttons {
display: flex;
gap: 10px;
justify-content: center;
}
.share-button {
padding: 10px 20px;
font-size: 1em;
font-weight: bold;
color: #ffffff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
.share-twitter {
background-color: #1da1f2;
}
.share-twitter:hover {
background-color: #0d8ae4;
}
.share-facebook {
background-color: #3b5998;
}
.share-facebook:hover {
background-color: #2d4373;
}
.share-whatsapp {
background-color: #25d366;
}
.share-whatsapp:hover {
background-color: #1ebe5d;
}
/* High Score History Container styling */
.history-container {
margin-top: 20px;
padding: 20px;
background: #2a2a2a;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
/* Title styling */
.history-container h2 {
font-size: 1.8em;
color: #4caf50;
margin-bottom: 15px;
font-weight: bold;
}
/* History list styling */
.history-list {
list-style-type: none;
padding: 0;
}
.history-list li {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 15px;
background-color: #1f1f1f;
border-radius: 5px;
margin-bottom: 10px;
color: #ffffff;
font-size: 1.1em;
transition: background-color 0.3s;
}
.history-list li:hover {
background-color: #333333;
}
/* Score and date styling */
.history-list .score {
color: #4caf50;
font-weight: bold;
}
.history-list .date {
color: #bbbbbb;
font-size: 0.9em;
font-style: italic;
}
</style>
</head>
<body>
<div class="score-container">
<h1>Share High Score!</h1>
<div class="score-display" id="scoreDisplay">0</div>
<p class="share-text">
I scored an amazing <span id="finalscore">0</span> points! Can you beat
my score?
</p>
<div class="share-buttons">
<button class="share-button share-twitter" onclick="shareOnTwitter()">
Share on Twitter
</button>
<button class="share-button share-facebook" onclick="shareOnFacebook()">
Share on Facebook
</button>
<button class="share-button share-whatsapp" onclick="shareOnWhatsApp()">
Share on WhatsApp
</button>
</div>
</div>
<!-- High Score History Container -->
<div class="score-container history-container">
<h2>High Score History</h2>
<ul id="highScoreHistory" class="history-list">
<!-- High scores with dates will be appended here by JavaScript -->
</ul>
</div>
<script>
// Get the high score from localStorage or set it to 0 if not available
const highScore = localStorage.getItem("highScore") || 0;
// Update the score display with the high score
document.getElementById("scoreDisplay").textContent = highScore;
document.getElementById("finalscore").textContent = highScore;
// Retrieve high score history from localStorage
let highScoreHistory =
JSON.parse(localStorage.getItem("highScoreHistory")) || [];
// Function to display high score history
function displayHighScoreHistory() {
const historyList = document.getElementById("highScoreHistory");
historyList.innerHTML = "";
highScoreHistory.forEach((entry) => {
const listItem = document.createElement("li");
listItem.textContent = `Score: ${entry.score} - Date: ${entry.date}`;
historyList.appendChild(listItem);
});
}
// Initial display of high score history
displayHighScoreHistory();
// Share functions
function shareOnTwitter() {
const text = `I scored ${highScore} points! Can you beat my score? #GamingWebsite`;
const url = "https://alienid.netlify.app/"; // Replace with your website URL
const twitterUrl = `https://twitter.com/intent/tweet?text=${encodeURIComponent(
text
)}&url=${encodeURIComponent(url)}`;
window.open(twitterUrl, "_blank");
}
function shareOnFacebook() {
const url = "https://alienid.netlify.app/"; // Replace with your website URL
const facebookUrl = `https://www.facebook.com/sharer/sharer.php?u=${encodeURIComponent(
url
)}`;
window.open(facebookUrl, "_blank");
}
function shareOnWhatsApp() {
const text = `I scored ${highScore} points! Can you beat my score? https://alienid.netlify.app/`; // Replace with your URL
const whatsappUrl = `https://wa.me/?text=${encodeURIComponent(text)}`;
window.open(whatsappUrl, "_blank");
}
</script>
</body>
</html>