-
Notifications
You must be signed in to change notification settings - Fork 0
/
pronto.html
40 lines (30 loc) · 1.01 KB
/
pronto.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Baloo+Paaji+2&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Você está pronto?</title>
</head>
<body style="background-color: #000; color: #fff;">
<section class="um">
<div>
<h1>Você está pronto?</h1>
<a href="bem-vindo.html" class="avancar">Sim</a>
</div>
</section>
<audio src="trilha-suspense1.mp3" autoplay loop></audio>
<div id="zumbi"></div>
<script>
function naoPodeVoltar() {
alert("Você já entrou na Colméia, e agora não pode mais voltar.")
document.querySelector("body").addEventListener("wheel", scroll);
function scroll() {
alert("Os zumbis estão vindo...")
document.getElementById("zumbi").innerHTML = `<audio src='zumbi2.mp3' autoplay></audio>`
}
}
</script>
</body>
</html>