-
Notifications
You must be signed in to change notification settings - Fork 191
/
share_score.html
127 lines (118 loc) · 4.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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: Arial, 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;
}
</style>
</head>
<body>
<div class="score-container">
<h1>Share Your Score!</h1>
<div class="score-display" id="scoreDisplay">0</div>
<p class="share-text">I scored an amazing <span id="score">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>
<script>
// Example game score
let gameScore = 150; // Replace with the actual score calculation
// Update the score display
document.getElementById("scoreDisplay").textContent = gameScore;
document.getElementById("score").textContent = gameScore;
// Share functions
function shareOnTwitter() {
const text = `I scored ${gameScore} points! Can you beat my score? #GamingWebsite`;
const url = "https://www.yourgamingwebsite.com"; // 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://www.yourgamingwebsite.com"; // 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 ${gameScore} points! Can you beat my score? https://www.yourgamingwebsite.com`; // Replace with your URL
const whatsappUrl = `https://wa.me/?text=${encodeURIComponent(text)}`;
window.open(whatsappUrl, "_blank");
}
</script>
</body>
</html>