2014-01-05 00:24:48 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2014-01-11 21:02:14 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>
|
2014-01-19 12:42:51 +00:00
|
|
|
<title>ASCIIFlow Infinity</title>
|
2014-01-12 19:08:29 +00:00
|
|
|
<style>
|
|
|
|
#menu {
|
2014-01-21 23:43:20 +00:00
|
|
|
position: fixed;
|
2014-01-20 23:58:33 +00:00
|
|
|
top: 95px;
|
2014-01-12 19:08:29 +00:00
|
|
|
left: 0px;
|
|
|
|
z-index: 100;
|
|
|
|
}
|
|
|
|
|
2014-01-20 21:36:58 +00:00
|
|
|
.dialog {
|
2014-01-21 23:43:20 +00:00
|
|
|
position: fixed;
|
2014-01-21 23:31:58 +00:00
|
|
|
top: 0px;
|
|
|
|
left: 70px;
|
|
|
|
width: 400px;
|
|
|
|
height: 300px;
|
2014-01-19 23:21:53 +00:00
|
|
|
transition: height 0.3s;
|
2014-01-21 23:31:58 +00:00
|
|
|
margin-top: 3px;
|
|
|
|
background: #F8F8F8;
|
2014-01-19 23:21:53 +00:00
|
|
|
display: none;
|
2014-01-21 23:31:58 +00:00
|
|
|
border: 1px solid #444;
|
2014-01-19 13:28:36 +00:00
|
|
|
}
|
|
|
|
|
2014-01-20 21:36:58 +00:00
|
|
|
.visible {
|
|
|
|
display: block !important;
|
|
|
|
}
|
|
|
|
|
2014-01-12 19:08:29 +00:00
|
|
|
button {
|
2014-01-20 23:58:33 +00:00
|
|
|
display: block;
|
|
|
|
margin: 3px;
|
|
|
|
width: 60px;
|
2014-01-12 19:08:29 +00:00
|
|
|
height: 30px;
|
|
|
|
text-align: center;
|
|
|
|
cursor: pointer;
|
2014-01-20 23:58:33 +00:00
|
|
|
background: #F8F8F8;
|
2014-01-19 23:21:53 +00:00
|
|
|
outline: 0 !important;
|
2014-01-20 21:36:58 +00:00
|
|
|
border-width: 1px;
|
2014-01-20 23:58:33 +00:00
|
|
|
border-color: #444;
|
2014-01-12 19:08:29 +00:00
|
|
|
}
|
|
|
|
|
2014-01-19 13:28:36 +00:00
|
|
|
button.active {
|
2014-01-20 21:36:58 +00:00
|
|
|
background: #D0E0FF;
|
2014-01-19 13:28:36 +00:00
|
|
|
}
|
|
|
|
|
2014-01-22 22:32:16 +00:00
|
|
|
#export-button, #import-button {
|
2014-01-21 23:31:58 +00:00
|
|
|
background: #D8D8D8;
|
|
|
|
}
|
2014-01-22 22:32:16 +00:00
|
|
|
#export-button.active, #import-button.active {
|
2014-01-21 23:31:58 +00:00
|
|
|
background: #C8C8C8;
|
|
|
|
}
|
|
|
|
|
2014-01-12 19:08:29 +00:00
|
|
|
#ascii-canvas {
|
2014-01-19 23:21:53 +00:00
|
|
|
position: fixed;
|
2014-01-12 19:08:29 +00:00
|
|
|
left: 0px;
|
|
|
|
top: 0px;
|
2014-01-19 23:21:53 +00:00
|
|
|
}
|
|
|
|
|
2014-01-20 23:58:33 +00:00
|
|
|
#logo {
|
2014-01-21 23:43:20 +00:00
|
|
|
position: fixed;
|
2014-01-20 23:58:33 +00:00
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
z-index: 100;
|
|
|
|
background: #F8F8F8;
|
|
|
|
border-right: 1px solid #444;
|
|
|
|
border-bottom: 1px solid #444;
|
|
|
|
}
|
|
|
|
|
|
|
|
#logo pre {
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
|
2014-01-22 22:32:16 +00:00
|
|
|
#export-area, #import-area {
|
|
|
|
width: 380px;
|
|
|
|
height: 280px;
|
|
|
|
overflow: hidden;
|
|
|
|
resize: none;
|
|
|
|
margin: 5px;
|
|
|
|
font-family: monospace;
|
|
|
|
white-space: pre;
|
|
|
|
}
|
|
|
|
|
|
|
|
#input-area {
|
2014-01-21 23:31:58 +00:00
|
|
|
width: 380px;
|
|
|
|
height: 280px;
|
|
|
|
overflow: hidden;
|
|
|
|
resize: none;
|
|
|
|
margin: 5px;
|
|
|
|
font-family: monospace;
|
|
|
|
white-space: pre;
|
|
|
|
}
|
|
|
|
|
2014-01-12 19:08:29 +00:00
|
|
|
</style>
|
2014-01-05 00:24:48 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2014-01-20 23:58:33 +00:00
|
|
|
<div id="logo"><pre>
|
|
|
|
__ ____ ____ _ _ ____ _____ _ __
|
|
|
|
/ \ | ___|| ___||_||_| / ___|| | _ | \ __ / /
|
|
|
|
/ /\ \|_ \ | | _ _ / / | | | | | |\ \/ \/ /
|
|
|
|
/ __ \_\ \ | |__ | || |/ __| | |_| |_| | \ /
|
|
|
|
/__/ \__\___||____||_||_|_/ |____|____| \_/\_/
|
|
|
|
|
|
|
|
</pre></div>
|
2014-01-12 19:08:29 +00:00
|
|
|
<div id="menu">
|
2014-01-19 13:28:36 +00:00
|
|
|
<div id="buttons">
|
2014-01-21 23:31:58 +00:00
|
|
|
<button id="export-button" class="tool">Export</button>
|
2014-01-22 22:32:16 +00:00
|
|
|
<button id="import-button" class="tool">Import</button>
|
|
|
|
|
2014-01-21 23:31:58 +00:00
|
|
|
<button id="box-button" class="tool active">Box</button>
|
|
|
|
<button id="line-button" class="tool">Line</button>
|
|
|
|
<button id="freeform-button" class="tool">Draw</button>
|
|
|
|
<button id="erase-button" class="tool">Erase</button>
|
|
|
|
<button id="move-button" class="tool">Resize</button>
|
|
|
|
<button id="text-button" class="tool">Text</button>
|
|
|
|
<button id="undo-button">Undo</button>
|
2014-01-20 23:58:33 +00:00
|
|
|
<!-- <button id="select-button">Select</button> -->
|
2014-01-19 13:28:36 +00:00
|
|
|
</div>
|
2014-01-21 23:31:58 +00:00
|
|
|
<div id="export-button-dialog" class="dialog">
|
|
|
|
<textarea id="export-area"></textarea>
|
2014-01-19 23:21:53 +00:00
|
|
|
</div>
|
2014-01-22 22:32:16 +00:00
|
|
|
<div id="import-button-dialog" class="dialog">
|
|
|
|
<textarea id="import-area"></textarea>
|
|
|
|
<button id="import-submit-button">Submit</button>
|
|
|
|
</div>
|
2014-01-12 19:08:29 +00:00
|
|
|
</div>
|
|
|
|
<canvas id="ascii-canvas"></canvas>
|
2014-01-07 22:49:54 +00:00
|
|
|
<script src="jquery-1.9.1.min.js"></script>
|
2014-01-05 00:24:48 +00:00
|
|
|
<script src="js-compiled.js"></script>
|
|
|
|
</body>
|
2014-01-07 22:49:54 +00:00
|
|
|
</html>
|