-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlevel_8.html
35 lines (28 loc) · 1.08 KB
/
level_8.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
<!DOCTYPE html>
<html lang="fr">
<head>
<title>Monsters Jquery / JS Demo</title>
<link href="./level_8.css" media="screen" rel="stylesheet" />
<script src="./ext/jquery-1.11.1.min.js"></script>
<script src="./level_8.js"></script>
</head>
<body>
<p id="instructions">Use arrow keys to move</p>
<h1>Monsters Demo</h1>
<p>This is the final result of a JQuery / JavaScript lesson you can find <a href="https://github.com/plancien/jquery-monsters-tutorial">here</a>.</p>
<p>It uses some basic JQuery features : selector, event listener, dynamic html creation.</p>
<p>And provides some beginning steps into object-oriented programming.</p>
<a href="http://www.toxicode.fr" id="logo"><img src="./ext/toxicode_logo.png" /></a>
<div id="monster_template">
<div class="monster">
<div class="eye left_eye">
<div class="eye_ball"></div>
</div>
<div class="eye right_eye">
<div class="eye_ball"></div>
</div>
</div>
</div>
<div id="player"></div>
</body>
</html>