-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinicial.html
113 lines (97 loc) · 3.95 KB
/
inicial.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Espaço Gamer</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
</head>
<body>
<header>
<nav>
<ul>
<li class="logo-nav">
<img src="assets/img/logo.png" alt="Espaço Gamer Logo">
<h1>Espaço Gamer</h1>
</li>
<li><a href="#modalQuemSomos" class="modal-btn">Quem Somos</a></li>
<li><a href="index.html">Jogos</a></li>
<li><a href="contato.html">Contato</a></li>
</ul>
</nav>
</header>
<main>
<div class="logo-center">
<div class="neon-glow"></div>
<img src="assets/img/logo.png" alt="Espaço Gamer Logo">
</div>
<div class="social-media">
<a href="https://www.instagram.com/carla_coder2023" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="https://github.com/Carla-coder" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://www.linkedin.com/in/carlamozena" target="_blank"><i class="fab fa-linkedin"></i></a>
</div>
<button id="audioButton">Play Music</button>
</main>
<audio id="backgroundMusic" loop>
<source src="audio/music.mp3" type="audio/mp3">
</audio>
<footer>
<p>© 2024 Espaço Gamer by Carla-coder. Todos os direitos reservados.</p>
</footer>
<!-- Modal -->
<div id="modalQuemSomos" class="modal">
<div class="modal-content">
<span class="close">×</span>
<h2>Quem Somos!!!</h2>
<br>
<br>
<p>Bem-vindo ao Espaço Gamer! Somos um portal dedicado aos entusiastas de jogos.
No Espaço Gamer, você encontrará uma variedade de jogos interativos e desafiadores,
que vão desde clássicos nostálgicos até novas aventuras empolgantes. Queremos proporcionar
momentos de entretenimento e aprendizado, estimulando a criatividade e a estratégia dos nossos jogadores.
<br>
<br>
Estamos felizes em tê-lo aqui e esperamos que aproveite ao máximo tudo o que o Espaço Gamer tem a oferecer. Sinta-se à
vontade para explorar nossos jogos, compartilhar suas conquistas. Se tiver alguma
dúvida ou sugestão, não hesite em nos contatar. Juntos, faremos do Espaço Gamer o seu lugar favorito para jogar e se
divertir!
</p>
</div>
</div>
<script>
// Modal Script
var modal = document.getElementById("modalQuemSomos");
var btns = document.getElementsByClassName("modal-btn");
var span = document.getElementsByClassName("close")[0];
for (var i = 0; i < btns.length; i++) {
btns[i].onclick = function () {
modal.style.display = "block";
}
}
span.onclick = function () {
modal.style.display = "none";
}
window.onclick = function (event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
// Adicionando o código para reproduzir o áudio
var audioButton = document.getElementById('audioButton');
var audio = document.getElementById('backgroundMusic');
var isAudioPlaying = false;
audioButton.addEventListener('click', function() {
if (isAudioPlaying) {
audio.pause();
isAudioPlaying = false;
audioButton.textContent = 'Play Music';
} else {
audio.play();
isAudioPlaying = true;
audioButton.textContent = 'Pause Music';
}
});
</script>
</body>
</html>