forked from jaammees/lvllvl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathframes.html
More file actions
59 lines (37 loc) · 2.18 KB
/
frames.html
File metadata and controls
59 lines (37 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<div id="frames" class="panelFill ui-button-holder" style="padding: 4px; overflow: hidden; white-space: nowrap; background-color: #1c1c1c">
<!--
<button id="play"><span class="glyphicons glyphicons-play"></span>Play</button>
-->
<div class="ui-button" id="play" style="width: 50px"><i class="halflings halflings-play"/> Play<div class="rippleJS"></div></div>
<select id="playMode">
<option value="once">Once</option>
<option value="loop" selected="selected">Loop</option>
<option value="pingpong">Ping Pong</option>
</select>
<span class="frameControlSeparator">|</span>
<label class="gridinfo-label" for="currentFrame">Frame</label>
<div class="ui-button" title="Previous Frame" id="prevFrame"><</div>
<input size="2" type="number" id="currentFrame" value="1" class="number" min="1"/>
<div style="display: inline-block; width: 24px; margin-left: 2px" id="frameCountInfo"></div>
<div class="ui-button" title="Next Frame" id="nextFrame">></div>
<label class="gridinfo-label" for="frameDuration">Frame Duration:</label>
<input size="4" type="number" class="number integer" id="frameDuration" min="1" max="255" value="12"/> ticks
<!--
<label for="frameCount">Frame Count:</label>
<input size="2" type="text" id="frameCount" value="1" id="frameCount" class="number" min="1"/>
-->
<!-- <button id="createFrame">Create Frame</button>-->
<span class="frameControlSeparator">|</span>
<div class="ui-button" id="insertFrame"><i class="halflings halflings-plus"/> New Frame<div class="rippleJS"></div></div>
<div class="ui-button" id="duplicateFrame"><i class="halflings halflings-duplicate"/> Duplicate<div class="rippleJS"></div></div>
<div class="ui-button" id="deleteFrame"><i class="halflings halflings-trash"/> Delete<div class="rippleJS"></div></div>
<!--
<button id="insertFrame">Create</button>
<button id="duplicateFrame">Duplicate</button>
<button id="deleteFrame">Delete</button>
-->
<span class="frameControlSeparator">|</span>
<label class="cb-container">Show Previous Frame <input type="checkbox" id="showGhostFrame" value="1" class="checkbox"/><span class="checkmark"/></label>
</div>