forked from shish/cview3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cview.html
56 lines (55 loc) · 2.36 KB
/
cview.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>CView3: Javascript Comic Viewer</title>
<link rel="stylesheet" href="./static/cview.css" type="text/css">
<script type="text/javascript" src="./static/cview.js"></script>
<link href="./contrib/bootstrap/css/bootstrap.css" rel="stylesheet" type="text/css" />
<link href="./contrib/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="./contrib/bootstrap/css/bootstrap-responsive.css" rel="stylesheet" type="text/css" />
</head>
<body onload="init();setScaled('100%')">
<div id="wrapper">
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="https://github.com/shish/cview3">CView3</a>
<div class="nav-collapse">
<ul class="nav">
<li class="active">
<div class="input-append">
<form class="navbar-form pull-left">
<select id="book" onchange="initChapSelector();" ></select>
<select id="chap" onchange="initPageSelector();"></select>
<select id="page" onchange="initDisplay();"></select>
<select id="scale" onchange="setScale(this.options[this.selectedIndex].value);">
<option value="w;100%" selected>Page Width</option>
<option value="w;50%">Half Page</option>
<option value="w;">Original Width</option>
</select>
<a href="#" onclick="alert('Arrow up/down: scroll\nArrow left/right: prev/next page'); return false;">Help</a>
</form>
</div>
</ul>
</div>
</div>
</div>
</div>
<div class="container">
<h1>CSview3</h1>
<div class="pagination">
<ul class="pager">
<li class="previous"><a href="#" onclick="moveToPrevPage(); return false;">Previous</a></li>
<li class="next"><a href="#" onclick="moveToNextPage(); return false;">Next</a></li>
</ul>
</div>
<a href="#" onclick="moveToNextPage(); return false;" ><img id="display" src="./static/spinner.gif"></a>
</div>
<div id="footer">
Images © their respective owners
<br><a href="http://http://github.org/shish/cview3">CView3</a> ©
<a href="http://www.shishnet.org/">Shish</a> 2010
</div>
</div>
</body>
</html>