-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (50 loc) · 1.5 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/confetti.browser.min.js"></script>
<link rel="stylesheet" href="./styles.css"
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rompecabezas JS</title>
<link rel="icon" href="./assets/rompecabezas.png" >
</head>
<body>
<!-- The two texts -->
<div id="container">
<span id="text1"></span>
<span id="text2"></span>
</div>
<!-- The SVG filter used to create the merging effect
<svg id="filters">
<defs>
<filter id="threshold">
<!-- Basically just a threshold effect - pixels with a high enough opacity are set to full opacity, and all other pixels are set to completely transparent.
<feColorMatrix in="SourceGraphic"
type="matrix"
values="1 0 0 0 0
0 1 0 0 0
0 0 1 0 0
0 0 0 255 -140" />
</filter>
</defs>
</svg>-->
<section class="counter-container">
<span class="counter">10</span>
</section>
<div class="board"></div>
<section class="first-screen">
<p></p>
<img src="./assets/photo.jpg" alt="caraculo" >
</section>
<section class="startBtn-container">
<button class="play-btn" id="start">Empezar</button>
<div class="btn-shadow"></div>
</section>
<div class="button-container">
<button id="playbtn"></button>
<button id="pausebtn"></button>
</div>
<script src="./main.js"></script>
</body>
</html>