-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathascii.html
More file actions
53 lines (52 loc) · 1.71 KB
/
ascii.html
File metadata and controls
53 lines (52 loc) · 1.71 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
<!DOCTYPE html>
<!--
This file contains the HTML for the ASCII Animation Viewer.
It is styled by ascii.css and controlled by ascii.js.
ASCII art is loaded from animations.js and myanimation.js.
-->
<html>
<head>
<title>ASCIImation</title>
<link rel="stylesheet" type="text/css" href="ascii.css" />
<script type="text/javascript" src="ascii.js"></script>
<script type="text/javascript" src="animations.js"></script>
<script type="text/javascript" src="myanimation.js"></script>
</head>
<body>
<h1>ASCII Animation Viewer</h1>
<textarea id="asciiarea" cols="80" rows="20"></textarea>
<fieldset>
<legend>Play Controls:</legend>
<input id="start" type="button" value="Start" />
<input id="stop" type="button" value="Stop" />
</fieldset>
<fieldset>
<legend>Animation:</legend>
<select id="animation">
<option selected="selected">Blank</option>
<option>Exercise</option>
<option>Juggler</option>
<option>Bike</option>
<option>Dive</option>
<option>Custom</option>
</select>
</fieldset>
<fieldset>
<legend>Size:</legend>
<select id="size">
<option value="7">Tiny</option>
<option value="10">Small</option>
<option value="12" selected="selected">Medium</option>
<option value="16">Large</option>
<option value="24">Extra Large</option>
<option value="32">XXL</option>
</select>
</fieldset>
<fieldset>
<legend>Speed:</legend>
<label><input type="radio" name="speed" value="50" /> Turbo</label>
<label><input type="radio" name="speed" value="250" checked="checked" /> Normal</label>
<label><input type="radio" name="speed" value="1500" /> Slo-Mo</label>
</fieldset>
</body>
</html>