forked from fongwama/EduPalu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
game_chasse_play.html
64 lines (54 loc) · 2.26 KB
/
game_chasse_play.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Quiz ~ FCRM & Fongwama</title>
<link href="css/bootstrap.css" rel="stylesheet" />
<link href="css/style.css" rel="stylesheet" />
<link href="css/game_chasse_style.css" rel="stylesheet" />
</head>
<body onload="chasse_para_play();">
<header class="jumbotron">
<a href="index.html">
<img src="img/logo.png" alt="logo EduPalu" class="center-block" />
</a>
</header>
<section class="container" >
<div id="question">
Retrouver les parasites sur cet echantillon de lame <span id="question_nb_value"></span>
</div>
<div id="question_header">
</div>
<div id="my_canvas_container" >
<div id="extra_infos" >
<img src="img/ic_reussites.png" class="ic_image_yes"/> : <span id="valPara">0</span>
<img src="img/ic_echecs.png" class="ic_image_no"/> : <span id="valErreur">0</span>
<div id="extra_cursor_pos">
<span>X:</span> <span id="posX">0</span>px <span id="my_slash">-</span>
<span>Y:</span> <span id="posY">0</span>px
</div>
</div>
<div id="question_timer">
<img src="img/ic_timer.gif" id="ic_image_timer"/>
<span id="question_timer_value_staked">0</span><span id="question_timer_value">0:00</span>
</div>
<div id="canvas_belt" style="border:1px solid green">
<canvas id="my_canvas" style="border:0px solid red"></canvas>
</div>
<div class="buttons_container">
<button id="afficher" class="btn btn-primary my_btn" type="submit">Cacher</button>
<button id="recommencer" class="btn btn-primary my_btn my_btn_right" type="submit">Recommencer</button>
</div>
</div>
</section>
<footer>
<p>
<a href="http://www.fcrm-congo.com">FCRM</a> & <a href="http://www.fongwama.com">Fongwama</a> - 2016
</p>
</footer>
<script type="text/javascript" src="js/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="js/game_chasse_Plasmodium_falciparum__Lukas__Wikipedia__PD.js"></script>
<script type="text/javascript" src="js/game_chasse_engine.js"></script>
</body>
</html>