127 lines
No EOL
4.4 KiB
HTML
Executable file
127 lines
No EOL
4.4 KiB
HTML
Executable file
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Web Slinger Comic Reader</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
|
|
|
|
<link href="./bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="./bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
|
|
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,400,600,300' rel='stylesheet' type='text/css'>
|
|
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
|
|
<!--[if lt IE 9]>
|
|
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
|
|
<![endif]-->
|
|
|
|
<script src="./js/jquery-1.9.1.min.js"></script>
|
|
<script src="./js/jquery.hotkeys.js"></script>
|
|
<script src="./bootstrap/js/bootstrap.min.js"></script>
|
|
|
|
<script src="./js/zip.js"></script>
|
|
<script src="./js/deflate.js"></script>
|
|
<script src="./js/main.js"></script>
|
|
|
|
<style>
|
|
html, body {
|
|
height: 100%;
|
|
font-family: "Open Sans", Helvetica, Arial, Sans-serif;
|
|
}
|
|
body {
|
|
background: #111 url('html5_logo.png') no-repeat bottom right;
|
|
background-size: 256px 256px;
|
|
color: #999;
|
|
}
|
|
h1 {
|
|
color: #fff;
|
|
}
|
|
body .modal {
|
|
color: #333;
|
|
}
|
|
#comicImages {
|
|
text-align: center;
|
|
}
|
|
#introText {
|
|
margin-top: 100px;
|
|
}
|
|
.fit {
|
|
height: 100vh;
|
|
}
|
|
.fitVertical {
|
|
height: 100%;
|
|
width: auto;
|
|
}
|
|
.spread2 .fitHorizontal {
|
|
height: auto;
|
|
width: 50%;
|
|
}
|
|
.spread1 .fitHorizontal {
|
|
height: auto;
|
|
width: 100%;
|
|
}
|
|
|
|
.fitBoth {
|
|
width: auto;
|
|
height: auto;
|
|
max-height: 100%;
|
|
}
|
|
.spread1 .fitBoth {
|
|
max-width: 100%;
|
|
}
|
|
.spread2 .fitBoth {
|
|
max-width: 50%;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body onload="init()">
|
|
<div id="navbar" class="navbar navbar-inverse navbar-fixed-top">
|
|
<div class="navbar-inner">
|
|
<div class="container">
|
|
<a class="brand" href="#">Web Slinger</a>
|
|
|
|
<div class="nav-collapse collapse">
|
|
<ul class="nav">
|
|
<li style="display: none;"><a href="#" title="Left arrow or k" id="prevPanel"><i class="icon-chevron-left icon-white"></i> Previous</a></li>
|
|
<li style="display: none;"><a href="#" title="Right arrow or j" id="nextPanel"><i class="icon-chevron-right icon-white"></i> Next</a></li>
|
|
<li style="display: none;"><a href="#" title="v key" id="fitVertical"><i class="icon-resize-vertical icon-white"></i> Fit Vertical</a></a></li>
|
|
<li style="display: none;"><a href="#" title="h key" id="fitHorizontal"><i class="icon-resize-horizontal icon-white"></i> Fit Horizontal</a></a></li>
|
|
<li style="display: none;"><a href="#" title="b key" id="fitBoth"><i class="icon-move icon-white"></i> Fit Both</a></a></li>
|
|
<li style="display: none;"><a href="#" title="f key" id="fullSpread"><i class="icon-pause icon-white"></i> Full Spread View</a></a></li>
|
|
<li style="display: none;"><a href="#" title="s key" id="singlePage"><i class="icon-stop icon-white"></i> Single Page View</a></a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="container" id="introText">
|
|
<div class="row">
|
|
<div class="span10">
|
|
<h1>JavaScript & HTML5 Comic Reader</h1>
|
|
<p class="lead">Simply drag and drop a CBZ file onto the page to start reading.</p>
|
|
<div id="alertArea"></div>
|
|
<p>Started as a <a href="http://www.raymondcamden.com/index.cfm/2012/5/29/Building-an-HTML5-Comic-Book-Reader#c2DCDC6B6-924D-59C5-1E7A546B79CAC44F">weekend project</a> by <a href="http://www.raymondcamden.com/">Raymond Camden</a>, and later developed by <a href="http://rkuykendall.com/">Robert Kuykendall</a> on <a href="https://github.com/rkuykendall/HTML5ComicBookReader">GitHub</a>.<p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="modal hide" id="statusModal">
|
|
<div class="modal-header">
|
|
<h3>Loading your comic.</h3>
|
|
</div>
|
|
<div class="modal-body">
|
|
<p id="statusModalText"></p>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="comicImages">
|
|
</div>
|
|
</body>
|
|
</html> |