This repository has been archived by the owner on Sep 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
258 lines (233 loc) · 8.21 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Freakybob.site</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A place for Freakybob.">
<meta content="Freakybob" property="og:title" />
<meta content="Together, we are freaky." property="og:description" />
<meta content="https://freakybob.site" property="og:url" />
<meta content="https://github.com/5quirre1/Freakybob.site/blob/main/Snapshots/Screenshot%202024-08-29%2012.38.20%20AM.png" property="og:image" />
<meta content="#006b79" data-react-helmet="true" name="theme-color" />
<link rel="icon" type="image/x-icon" href="images/Main.ico">
<style>
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.4);
z-index: -1;
}
body {
background-image: url('images/Bikinibottom.jpg');
background-color: aqua;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
margin: 0;
padding: 0;
font-family: 'Comic Sans MS', sans-serif;
min-height: 100vh;
min-width: 100vw;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
color: white;
}
h1 {
text-align: center;
color: rgb(218, 203, 3);
font-size: 42px;
margin-top: 10px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
h2 {
color: yellow;
}
.popup {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgb(6, 22, 51);
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;
opacity: 1;
transition: opacity 3s ease;
}
.popup.fade-out {
opacity: 0;
}
.popup-content {
background: rgb(4, 63, 140);
padding: 25px;
text-align: center;
border-radius: 12px;
max-width: 90%;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
animation: fadeIn 0.9s ease;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: scale(0.95);
}
to {
opacity: 1;
transform: scale(1);
}
}
button {
margin-top: 12px;
padding: 15px 25px;
font-size: 18px;
cursor: pointer;
background-color: rgb(172, 147, 5);
color: white;
border: none;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
transition: all 0.3s ease;
max-width: 220px;
width: 100%;
}
button:hover {
background-color: rgb(218, 203, 3);
transform: translateY(-3px) scale(1.05);
}
#mute-button {
position: fixed;
top: 1px;
right: 4px;
padding: 10px 15px;
background-color: rgb(1, 170, 128);
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 14px;
z-index: 1001;
}
#github-button,
#discord-button,
#bluesky-button {
position: fixed;
z-index: 1001;
display: none; /* imagine being hidden LMAOO */
}
#github-button {
margin-top: -490px;
left: 10px;
}
#discord-button {
margin-top: -360px;
left: -10px;
}
#bluesky-button {
top: 10px;
left: 10px;
}
#github-button img,
#bluesky-button img {
width: 40px;
height: 40px;
}
#discord-button img {
width: 80px;
height: 60px;
}
#freakybob-logo {
position: fixed;
margin-top: -436px;
border: none;
background: none;
cursor: pointer;
}
#freakybob-logo img {
width: 40px;
height: 40px;
}
</style>
</head>
<body>
<h1>Freakybob</h1>
<a href="https://github.com/5quirre1/Freakybob.site" id="freakybob-logo" width="60px" height="60px">
<img src="images/freakyblog.png" alt="freakyblog">
</a>
<a href="info.html"><button>Check out the info page!</button></a>
<h2>
<marquee>This website got me tweaking like :3 | Updates are still slower than they should be cause of my school | Join the discord to give support!</marquee>
</h2>
<a href="foundingpeople.html" ><button>Check out the people who made this possible!</button></a>
<a href="https://freakybob-team.github.io/Image.gallery/"><button>Check out the image gallery!</button></a>
<a href="musicgallery.html" ><button>Listen to Spongebob music!</button></a>
<!-- fun fact: Wish tried to add a cookie to sound popup to make it disappear! it failed though -->
<div id="sound-popup" class="popup">
<div class="popup-content">
<p>Welcome to freakybob.site! Hope you enjoy the website just as much as we do!</p>
<button id="thanks-button">Thanks!</button>
<audio id="hover" src="audio/hover-sound-effect.mp3" preload="auto"></audio>
<!-- The hover noise is never gonna work vroo-->
<audio id="thanks-sound" src="audio/old-radio-button-click-97549.mp3" preload="auto"></audio>
</div>
</div>
<a href="https://scratch.mit.edu/projects/1059751585/" id="scratch-button"><button>Freakybob clicker (Scratch)</button></a>
<audio id="background-music" loop>
<source src="audio/03 - System Music - First Time Setup (TV).mp3" type="audio/mp3">
</audio>
<a href="https://github.com/5quirre1/Freakybob.site" id="github-button">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c2/GitHub_Invertocat_Logo.svg/640px-GitHub_Invertocat_Logo.svg.png" alt="GitHub Logo">
</a>
<a href="https://discord.gg/EQZ9YkVZmx" id="discord-button">
<img src="images/discord.png" alt="Discord logo">
</a>
<a href="https://bsky.app/profile/freakybob.site" id="bluesky-button">
<img src="images/Bluesky.png" alt="Bluesky logo">
</a>
<button id="mute-button" style="display:none;">Mute Music</button>
<script>
const popup = document.getElementById('sound-popup');
const thanksButton = document.getElementById('thanks-button');
const thanksSound = document.getElementById('thanks-sound');
const backgroundMusic = document.getElementById('background-music');
const muteButton = document.getElementById('mute-button');
const githubButton = document.getElementById('github-button');
const discordButton = document.getElementById('discord-button');
const blueskyButton = document.getElementById('bluesky-button');
thanksButton.addEventListener('click', () => {
thanksSound.play();
popup.classList.add('fade-out');
setTimeout(() => {
popup.style.display = 'none';
githubButton.style.display = 'block';
discordButton.style.display = 'block';
blueskyButton.style.display = 'block';
muteButton.style.display = 'block';
backgroundMusic.play();
}, 2000);
});
function toggleMusic() {
if (backgroundMusic.paused) {
backgroundMusic.play();
muteButton.textContent = 'Mute Music';
} else {
backgroundMusic.pause();
muteButton.textContent = 'Unmute Music';
}
}
muteButton.addEventListener('click', toggleMusic);
window.addEventListener('load', () => {
setTimeout(() => popup.style.display = 'flex', 500);
});
</script>
</body>
</html>
<!--I love boys <3 -->