-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplayGame.html
82 lines (69 loc) · 3.31 KB
/
playGame.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="viewport" content="height=device-height, initial-scale=1, shrink-to-fit=no">
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Creepster" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Luckiest+Guy" rel="stylesheet">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src='https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.min.js'></script>
<!-- CSS -->
<!-- <link rel="stylesheet" type="text/css" href="./css/index.css">
<link rel="stylesheet" type="text/css" href="css/gameOver.css"> -->
<link rel="shortcut icon" type="image/png" href="./assets/image/Chubby-run.gif" />
<link rel="stylesheet" type="text/css" href="style.css" />
<!-- <link rel="stylesheet" type="text/css" href="playGame.css" /> -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css">
<title>SUPER POULE</title>
</head>
<body>
<div class="container d-none" id="pouleover">
<img src="pics/Poule-Over.png" class="animated hinge">
</div>
<div class="progress">
<div class="progress-bar progress-bar-striped progress-bar-animated progressbar" role="progressbar"
aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"
style="width: 100%; background-image:linear-gradient(red, yellow)"></div>
</div>
<audio controle loop autoplay>
<source src="audio.mp3" type="audio/mp3">
</audio>
<!-- <object data=" audio.mp3 " heigth="0" width="0" loop ></object> -->
<div id="modal" class="modal">
<div class="modal-inner content center">
<h2> SUPER POULE</h2>
<!-- <p id="playerImage"></p> -->
<p id="playerPseudo"><img src="" /> </p>
<p> your last score: </p>
<p> your better score: </p>
<a href="index.html"><button id="close-modal">Play Again</button></a>
</div>
</div>
<div class="container d-none" id="youwin">
<div class="youwin">
<div class=" modal-inner content center">
<p>You Win!!</p>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<script type="text/JavaScript" src="Mario.js"></script>
<script type="text/JavaScript" src="playGame.js"></script>
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
</body>
</html>