2013-10-28 16:00:20 -04:00
<!DOCTYPE html>
2013-11-14 20:08:52 -05:00
< 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 >
< link rel = stylesheet href = player.css >
< link rel = stylesheet href = index.css >
< script src = //ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js > < / script >
2014-02-19 22:11:08 -05:00
< script type = "text/javascript" >
$(document).ready(function() {
2013-11-14 20:08:52 -05:00
var project_id = location.hash & & parseInt(location.hash.substr(1)) || 10000160;
2014-02-19 22:11:08 -05:00
var scratch = new Scratch(project_id);
});
2013-11-14 20:08:52 -05:00
< / script >
< 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 >
2013-11-02 19:00:36 -04:00
< / div >
2013-10-28 16:00:20 -04:00
< / div >
2013-11-14 20:08:52 -05:00
< / 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 >
< / 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 >
2014-02-19 22:11:08 -05:00
< script src = js/util/Timer.js > < / script >
< script src = js/util/OffsetBuffer.js > < / script >
< script src = js/util/Color.js > < / script >
< script src = js/util/Rectangle.js > < / script >
< script src = js/Sprite.js > < / script >
< script src = js/Reporter.js > < / script >
< script src = js/Stage.js > < / script >
< script src = js/sound/WAVFile.js > < / script >
< script src = js/sound/SoundDecoder.js > < / script >
< script src = js/sound/SoundBank.js > < / script >
< script src = js/sound/NotePlayer.js > < / script >
< script src = soundbank/Instr.js > < / script >
< script src = js/IO.js > < / script >
< script src = js/primitives/VarListPrims.js > < / script >
< script src = js/primitives/MotionAndPenPrims.js > < / script >
< script src = js/primitives/LooksPrims.js > < / script >
< script src = js/primitives/SensingPrims.js > < / script >
< script src = js/primitives/SoundPrims.js > < / script >
< script src = js/primitives/Primitives.js > < / script >
< script src = js/Interpreter.js > < / script >
< script src = js/Runtime.js > < / script >
<!-- <script src=js/Scratch.js></script> -->
< script type = "text/JavaScript" src = "js/Scratch.js" > < / script >