-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
120 lines (104 loc) · 3.22 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!doctype html>
<html lang="fr">
<head>
<title>Dota 2 based invoker game</title>
<meta name="description" content="A mini game that mimic Invoker character's gameplay from Dota 2 (by Valve)" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Language" content="fr" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<link href="./css/style.css" rel="stylesheet" type="text/css" />
<link href="./css/font-awesome.min.css" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" type="image/png" href="./img/favicon.png" />
</head>
<body>
<header id="header">
<ul>
<li>
<a id="keys_binding_btn" href=""><i class="icon-cog"></i> Configure your keys</a>
</li>
<li>
<a id="visual" href=""><i class="icon-lightbulb"></i> Tips on/off</a>
</li>
<li>
<a id="quickcast_btn" href=""><i class="icon-bolt"></i> Quickcast on/off</a>
</li>
<li class="right">
<div id="points"> <span>0</span> Points</div>
</li>
<li class="right">
<div id="combo_points"> combo: <span>0</span></div>
</li>
</ul>
</header>
<main id="wrapper">
<aside id="message">
<div class="message_wrapper">
<a class="close">x</a>
<div id="message_content">
<h2>
Rules
</h2>
<p>
- first step: configure yours keys ! (top menu)<br />
- press start to launch the game<br />
- activate the highlighted skill and press the ULTI button to show it<br />
- use your skill 4 or 5 to activate a memorized skill<br />
- launch the skill on the blue target (mouseleft)<br />
- ghost walk and forge spirit will instacast without click (like ingame)<br />
- you have the possibility to double tap alacrity<br />
<br />
- A mistake will break your combo and take one of your 5 lifes away<br />
- be advised that you can't reinvoke a spell already in your set. If you do, you will lose a life. Instead, use them directly with key 4 or key 5 without reinvoking<br />
<br />
</p>
<h2>
I don't know the spells already...
</h2>
<p>
No problem, just activate the "Tips" option on the top of the screen. That will show you the elements used in each spell.<br />
<br />
</p>
<h2>
But i prefer quickcast !
</h2>
<p>
I got you, a quickcast option exist in the top menu. Once activated, the keys 4 and 5 immediatly trigger the spell. No more mouse click needed !
</p>
</div>
</div>
</aside>
<section class="left">
<div id="spells_display">
<div id="primary_skill">
<span>skill 4</span>
</div>
<div id="secondary_skill">
<span>skill 5</span>
</div>
<ul id="keys_set">
<li>1</li>
<li>2</li>
<li>3</li>
</ul>
</div>
<div id="target" class="">
QUICKCAST
</div>
</section>
<section id="questions_column">
<div class="active_arrow">
<i class="icon-arrow-right"></i>
</div>
<h2 id="start">
Start
</h2>
<div class="loading_bar"><span>-</span> sec</div>
<ul id="questions_list">
</ul>
</section>
</main>
<script type="text/javascript" src="./js/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="./js/monjquery.js"></script>
</body>
</html>