turtlestitch/index.html

75 wiersze
3.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>TurtleStitch </title>
<link rel="shortcut icon" href="stitchcode/favicon-32x32.png" type="image/png" />
<script type="text/javascript" src="morphic.js"></script>
<script type="text/javascript" src="widgets.js"></script>
<script type="text/javascript" src="blocks.js"></script>
<script type="text/javascript" src="threads.js"></script>
<script type="text/javascript" src="objects.js"></script>
<script type="text/javascript" src="gui.js"></script>
<script type="text/javascript" src="paint.js"></script>
<script type="text/javascript" src="lists.js"></script>
<script type="text/javascript" src="byob.js"></script>
<script type="text/javascript" src="tables.js"></script>
<script type="text/javascript" src="xml.js"></script>
<script type="text/javascript" src="store.js"></script>
<script type="text/javascript" src="locale.js"></script>
<script type="text/javascript" src="cloud.js"></script>
<script type="text/javascript" src="sha512.js"></script>
<script type="text/javascript" src="stitchcode/jquery.js"></script>
<script type="text/javascript" src="stitchcode/Filesaver.js"></script>
<script type="text/javascript" src="stitchcode/canvg/rgbcolor.js"></script>
<script type="text/javascript" src="stitchcode/canvg/StackBlur.js"></script>
<script type="text/javascript" src="stitchcode/canvg/canvg.js"></script>
<script type="text/javascript" src="stitchcode/turtleShepherd.js"></script>
<script type="text/javascript" src="stitchcode/turtlestitch.js"></script>
<script type="text/javascript" src="stitchcode/blocks.js"></script>
<script type="text/javascript" src="stitchcode/objects.js"></script>
<script type="text/javascript" src="stitchcode/gui.js"></script>
<script type="text/javascript" src="stitchcode/gui-cloud.js"></script>
<script type="text/javascript" src="stitchcode/cloud.js"></script>
<script type="text/javascript">
var world;
window.onload = function () {
world = new WorldMorph(document.getElementById('world'));
world.worldCanvas.focus();
new IDE_Morph().openIn(world);
loop();
};
function loop() {
requestAnimationFrame(loop);
world.doOneCycle();
}
</script>
</head>
<body style="margin: 0;">
<canvas id="world" tabindex="1" style="position: absolute;"></canvas>
<canvas width="480" height="360" id="svg" style="background:white;
position:absolute;right:0;bottom:0;width:480px;height:360px;
border:1px solid #c0c0c0"></canvas>
<div id="svg2" style="background:white;font-size:60%;position:absolute;
position:absolute;right:0;bottom:0;width:480px;height:360px;
border:1px solid #c0c0c0" ></div>
<div name="debug" id="debug" style="background:white;font-size:60%;position:absolute;
width:33%;height:20%;left:34%;bottom:0;overflow:auto;border:1px solid #c0c0c0;
"></div>
<textarea id="code" width="480" height="360" style="background:white;font-size:60%;position:absolute;
width:33%;height:20%;left:0;bottom:0;overflow:auto;border:1px solid #c0c0c0"></textarea>
</body>
</html>