forked from scratchfoundation/scratch-html5
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·75 lines (70 loc) · 3.33 KB
/
index.html
File metadata and controls
executable file
·75 lines (70 loc) · 3.33 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Scratch HTML5</title>
<!-- iPad properties: set width, disable pinch zoom -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="user-scalable=no, width=540">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- Stylesheets -->
<link rel=stylesheet href="player.css">
<link rel=stylesheet href="index.css">
<!-- Scripts -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="js/util/Timer.js" defer></script>
<script src="js/util/OffsetBuffer.js" defer></script>
<script src="js/util/Color.js" defer></script>
<script src="js/util/Rectangle.js" defer></script>
<script src="js/Sprite.js" defer></script>
<script src="js/Reporter.js" defer></script>
<script src="js/Stage.js" defer></script>
<script src="js/sound/WAVFile.js" defer></script>
<script src="js/sound/SoundDecoder.js" defer></script>
<script src="js/sound/SoundBank.js" defer></script>
<script src="js/sound/NotePlayer.js" defer></script>
<script src="soundbank/Instr.js" defer></script>
<script src="js/IO.js" defer></script>
<script src="js/primitives/VarListPrims.js" defer></script>
<script src="js/primitives/MotionAndPenPrims.js" defer></script>
<script src="js/primitives/LooksPrims.js" defer></script>
<script src="js/primitives/SensingPrims.js" defer></script>
<script src="js/primitives/SoundPrims.js" defer></script>
<script src="js/primitives/Primitives.js" defer></script>
<script src="js/Interpreter.js" defer></script>
<script src="js/Runtime.js" defer></script>
<script src="js/Scratch.js" defer></script>
<script src="js/init.js" defer></script>
<script type="text/javascript" src="js/util/jszip.min.js" defer></script>
</head>
<body>
<div id=player-container>
<div class="arrow vertical" id=up></div>
<div class="arrow vertical" id=down></div>
<div class="arrow horizontal" id=left></div>
<div class="arrow horizontal" id=right></div>
<div id=player-header>
<div id=player-header-preload></div>
<div id=player-header-version>HTML5</div>
<button id=toggle-fullscreen tabindex=1></button>
<button id=trigger-stop tabindex=3></button>
<button id=trigger-green-flag tabindex=2></button>
</div>
<div id=player-content>
<div id=container></div>
<div id=overlay></div>
<div id=preloader>
<div id=preloader-progress><div id=preloader-progress-bar></div></div>
<div id=preloader-caption>Loading project…</div>
<div id=preloader-details></div>
</div>
</div>
</div>
<div id=project-picker>
<span id=address-hint>http://scratch.mit.edu/projects/</span><input id=project-id placeholder=10000160><button id=go-project>→</button><br/>
<input type="file" id="file-picker" name="file-picker" />
</div>
<h1>Scratch HTML5 player</h1>
<p>The Scratch HTML5 player is still in development. Feedback is welcome! Please report any bugs (or differences from the Flash player) <a href=https://github.com/ilovecode1/scratch-html5>on Github</a>.</p>
</body>
</html>