This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
scratch-html5/index.html
Cythral fdd0a51fe2 Fixed index.html to use proper html5 syntax.
This is 2015 we use <html>, <head>, <body> and quotation marks around our attributes.
2015-08-05 19:14:50 -05:00

73 lines
3.3 KiB
HTML
Executable file

<!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" async defer></script>
<script src="js/util/OffsetBuffer.js" async defer></script>
<script src="js/util/Color.js" async defer></script>
<script src="js/util/Rectangle.js" async defer></script>
<script src="js/Sprite.js" async defer></script>
<script src="js/Reporter.js" async defer></script>
<script src="js/Stage.js" async defer></script>
<script src="js/sound/WAVFile.js" async defer></script>
<script src="js/sound/SoundDecoder.js" async defer></script>
<script src="js/sound/SoundBank.js" async defer></script>
<script src="js/sound/NotePlayer.js" async defer></script>
<script src="soundbank/Instr.js" async defer></script>
<script src="js/IO.js" async defer></script>
<script src="js/primitives/VarListPrims.js" async defer></script>
<script src="js/primitives/MotionAndPenPrims.js" async defer></script>
<script src="js/primitives/LooksPrims.js" async defer></script>
<script src="js/primitives/SensingPrims.js" async defer></script>
<script src="js/primitives/SoundPrims.js" async defer></script>
<script src="js/primitives/Primitives.js" async defer></script>
<script src="js/Interpreter.js" async defer></script>
<script src="js/Runtime.js" async defer></script>
<script src="js/Scratch.js" async defer></script>
<script src="js/init.js" async 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&hellip;</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>&rarr;</button>
</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/LLK/scratch-html5>on Github</a>.</p>
</body>
</html>