Spaces:
Running
Running
Update index.html
Browse files- index.html +59 -1
index.html
CHANGED
@@ -1,2 +1,60 @@
|
|
1 |
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
|
2 |
+
<!DOCTYPE html>
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<meta charset="utf-8">
|
6 |
+
<title>ScratchJS</title>
|
7 |
+
<!--
|
8 |
+
Copyright (c) 2013-2020 Vanessa Freudenberg
|
9 |
+
|
10 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
11 |
+
of this software and associated documentation files (the "Software"), to deal
|
12 |
+
in the Software without restriction, including without limitation the rights
|
13 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
14 |
+
copies of the Software, and to permit persons to whom the Software is
|
15 |
+
furnished to do so, subject to the following conditions:
|
16 |
+
|
17 |
+
The above copyright notice and this permission notice shall be included in
|
18 |
+
all copies or substantial portions of the Software.
|
19 |
+
|
20 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
21 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
22 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
23 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
24 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
25 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
26 |
+
THE SOFTWARE.
|
27 |
+
-->
|
28 |
+
<link rel="icon" type="image/png" href="scratch.png">
|
29 |
+
<link rel="apple-touch-icon" href="scratch.png" sizes="152x152">
|
30 |
+
<meta name="viewport" content="minimum-scale=1,maximum-scale=1,width=device-width">
|
31 |
+
<meta name="apple-mobile-web-app-capable" content="yes">
|
32 |
+
<meta name="msapplication-TileImage" content="scratch.png">
|
33 |
+
|
34 |
+
<link rel="stylesheet" href="lib/gh-fork-ribbon.css">
|
35 |
+
<link rel="stylesheet" href="lib/addtohomescreen.css">
|
36 |
+
<script src="lib/addtohomescreen.js"></script>
|
37 |
+
|
38 |
+
<link rel="stylesheet" href="scratch.css">
|
39 |
+
<script type="module" src="squeak.js"></script>
|
40 |
+
<script src="0.5.js"></script>
|
41 |
+
|
42 |
+
</head>
|
43 |
+
<body>
|
44 |
+
<div id="sqHeader">
|
45 |
+
<h1>Scratch on SqueakJS</h1>
|
46 |
+
<label title="Make Scratch as large as possible"><input id="sqFullscreen" type="checkbox">full screen</label>
|
47 |
+
<div class="github-fork-ribbon-wrapper right">
|
48 |
+
<div class="github-fork-ribbon">
|
49 |
+
<a href="https://github.com/codefrau/SqueakJS" target="_blank">Fork me on GitHub</a>
|
50 |
+
</div>
|
51 |
+
</div>
|
52 |
+
</div>
|
53 |
+
<div id="sqFooter">
|
54 |
+
<p>This is <a href="../" target="_blank">SqueakJS</a> running a Scratch image.
|
55 |
+
Feedback and contributions welcome! — Vanessa Freudenberg</p>
|
56 |
+
</div>
|
57 |
+
<canvas id="sqCanvas"></canvas>
|
58 |
+
<div id="sqSpinner"><div></div></div>
|
59 |
+
</body>
|
60 |
+
</html>
|