asciiflow2/index.html

102 lines
2.0 KiB
HTML
Raw Normal View History

2014-01-05 00:24:48 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<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>
<style>
#menu {
position: absolute;
top: 95px;
left: 0px;
z-index: 100;
}
2014-01-20 21:36:58 +00:00
.dialog {
2014-01-19 23:21:53 +00:00
transition: height 0.3s;
border-radius: 5px;
2014-01-20 21:36:58 +00:00
margin: 10px;
border: 1px solid #444;
background: #D0E0FF;
2014-01-19 13:28:36 +00:00
2014-01-19 23:21:53 +00:00
display: none;
2014-01-19 13:28:36 +00:00
}
2014-01-20 21:36:58 +00:00
.visible {
display: block !important;
}
button {
display: block;
margin: 3px;
width: 60px;
height: 30px;
text-align: center;
cursor: pointer;
background: #F8F8F8;
2014-01-19 23:21:53 +00:00
outline: 0 !important;
2014-01-20 21:36:58 +00:00
border-width: 1px;
border-color: #444;
}
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
}
#ascii-canvas {
2014-01-19 23:21:53 +00:00
position: fixed;
left: 0px;
top: 0px;
};
2014-01-19 23:21:53 +00:00
#export-area {
width: 100%;
height: 100px;
}
#logo {
position: absolute;
top: 0px;
left: 0px;
z-index: 100;
background: #F8F8F8;
border-right: 1px solid #444;
border-bottom: 1px solid #444;
}
#logo pre {
margin: 0px;
}
</style>
2014-01-05 00:24:48 +00:00
</head>
<body>
<div id="logo"><pre>
__ ____ ____ _ _ ____ _____ _ __
/ \ | ___|| ___||_||_| / ___|| | _ | \ __ / /
/ /\ \|_ \ | | _ _ / / | | | | | |\ \/ \/ /
/ __ \_\ \ | |__ | || |/ __| | |_| |_| | \ /
/__/ \__\___||____||_||_|_/ |____|____| \_/\_/
</pre></div>
<div id="menu">
2014-01-19 13:28:36 +00:00
<div id="buttons">
2014-01-20 21:36:58 +00:00
<button id="box-button" class="active">Box</button>
2014-01-19 13:28:36 +00:00
<button id="line-button">Line</button>
<button id="freeform-button">Draw</button>
<button id="erase-button">Erase</button>
<button id="move-button">Resize</button>
<button id="text-button">Text</button>
<!-- <button id="select-button">Select</button> -->
<!-- <button id="menu-button">Menu</button> -->
2014-01-19 13:28:36 +00:00
</div>
2014-01-20 21:36:58 +00:00
<div id="menu-button-dialog" class="dialog">
<pre id="export-area">BLAH</pre>
2014-01-19 23:21:53 +00:00
</div>
</div>
<canvas id="ascii-canvas"></canvas>
<script src="jquery-1.9.1.min.js"></script>
2014-01-05 00:24:48 +00:00
<script src="js-compiled.js"></script>
</body>
</html>