-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (68 loc) · 3.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<title>Whack a rock</title>
</head>
<body class="bg-dark text-white">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<div class="container text-center">
<h1>whack - rock</h1>
<h3>Your score : <span class="score"></span></h3>
<h3>Goal : <span class="goal"></span></h3>
<h4>Time : <span class="timer">60</span></h4>
<br>
<div class="container">
<div class="row" style="height: 25vh;">
<div class="col border w-25 h-75">
<img id="1" src="./assets/1.jpg" style="max-width: 8vw;overflow: hidden;animation-delay: 4s;">
</div>
<div class="col border w-25 h-75">
<img src="./assets/1.jpg" style="max-width: 8vw;overflow: hidden;animation-delay: 2s;">
</div>
<div class="col border w-25 h-75">
<img src="./assets/1.jpg" style="max-width: 8vw;overflow: hidden;animation-delay: 1s;">
</div>
</div>
<div class="row" style="height: 25vh;">
<div class="col border w-25 h-75">
<img src="./assets/1.jpg" style="max-width: 8vw;overflow: hidden;animation-delay: 2s;">
</div>
<div class="col border w-25 h-75">
<img src="./assets/1.jpg" style="max-width: 8vw;overflow: hidden;animation-delay: 3s;">
</div>
<div class="col border w-25 h-75">
<img src="./assets/1.jpg" style="max-width: 8vw;overflow: hidden;animation-delay: 1s;">
</div>
</div>
<div class="row" style="height: 25vh;">
<div class="col border w-25 h-75">
<img src="./assets/1.jpg" style="max-width: 8vw;overflow: hidden;animation-delay: 0;">
</div>
<div class="col border w-25 h-75">
<img src="./assets/1.jpg" style="max-width: 8vw;overflow: hidden;animation-delay: 2s;">
</div>
<div class="col border w-25 h-75">
<img src="./assets/1.jpg" style="max-width: 8vw;overflow: hidden;animation-delay: 4s;">
</div>
</div>
<div class="row" style="height: 25vh;">
<div class="col border w-25 h-75">
<img src="./assets/1.jpg" style="max-width: 8vw;overflow: hidden;animation-delay: 1s;">
</div>
<div class="col border w-25 h-75">
<img src="./assets/1.jpg" style="max-width: 8vw;overflow: hidden;animation-delay: 3s;">
</div>
<div class="col border w-25 h-75">
<img src="./assets/1.jpg" style="max-width: 8vw;overflow: hidden;animation-delay: 2s;">
</div>
</div>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>