You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.1 KiB
53 lines
1.1 KiB
<html> |
|
<head> |
|
<title>blayer web interface</title> |
|
<script src="jquery.js" type="text/javascript"></script> |
|
<script src="blayerwebif.js" type="text/javascript"></script> |
|
|
|
<link rel="stylesheet" href="style.css" /> |
|
</head> |
|
<body> |
|
|
|
<div id="containerleft"> |
|
<div class="box"> |
|
<p class="boxhead">control</p> |
|
|
|
<p class="controlbuttons"> |
|
<a href="#" id="next">next</a> |
|
<a href="#" id="pause">play / pause</a> |
|
</p> |
|
</div> |
|
|
|
<div class="box"> |
|
<p class="boxhead">upload</p> |
|
<form action="#" method="post" id="uploadform"> |
|
<input type="file" name="file" /> |
|
<input type="button" value="upload" id="uploadbutton" /> |
|
</form> |
|
</div> |
|
|
|
<div class="box"> |
|
<p class="boxhead">current animation</p> |
|
|
|
<!--<p><span class="label">Filename:</span><span id="filename"></span></p>--> |
|
|
|
<table id="tagtable"> |
|
</table> |
|
|
|
</div> |
|
</div> |
|
|
|
<div id="containerleft"> |
|
<div class="box"> |
|
<p class="boxhead">animation database</p> |
|
<p><span id="animationcount">###</span> animations in total</p> |
|
|
|
<p>filter: <input type="text" id="filtertext" /></p> |
|
|
|
<ul id="filenames"> |
|
</ul> |
|
|
|
</div> |
|
</div> |
|
|
|
</body></html>
|
|
|