-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.jade
29 lines (27 loc) · 1.22 KB
/
index.jade
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
doctype html
html(lang="ja")
head
meta(name="viewport", content="width=750,user-scalable=0")
title Matter.js Sample
link(rel="stylesheet", href="./css/index.css")
link(rel="stylesheet", href="https://fonts.googleapis.com/css?family=Sigmar+One", type="text/css")
body
div#js-game.game
div#js-engine.engine
div.panel
div#js-panelIntro.panel__intro(style="display:none;") Start
div#js-panelOutro.panel__outro(style="display:none;") Replay
div#js-panelGame.panel__game(style="display:none;") 0
// Audio
audio#js-soundClick(preload="auto")
source(src="./audio/decision17.mp3", type="audio/mp3")
audio#js-soundFailure(preload="auto")
source(src="./audio/tin1.mp3", type="audio/mp3")
audio#js-soundJump(preload="auto")
source(src="./audio/boyon1.mp3", type="audio/mp3")
audio#js-soundCountUp(preload="auto")
source(src="./audio/decision3.mp3", type="audio/mp3")
// JavaScript
script(src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js")
script(src="./js/matter.min.js")
script(src="./js/index.js")