This repository has been archived by the owner on Feb 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.html
47 lines (47 loc) · 2.25 KB
/
index.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
<doctype !HTML>
<meta charset="utf-8">
<head>
<title>Qawl</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" media='' href="light.css" id="lightCss">
<link rel="stylesheet" type="text/css" media='none' href="dark.css" id="darkCss">
</head>
<body class="dragscroll">
<div id="overlay">
<div class="overlayContents">
<img src="assets/icon.png" id="logo">
<h1>Qawl</h1>
<p>Press any key to continue</p>
</div>
</div>
<div id="footer" class="footerControls">
<div class="footerSurahSelect">
<select id="surahSelect" onchange="surahDropdown();"></select>
<button id="openOnQuranCom" onclick="openOnQuranCom();" class="icon-globe" title="Open translations and recitations (Q)"></button>
</div>
<div class="footerPageOptions">
<button id="turnLeft" onclick="turnPage(+2);" title="Turn left (A)" class="icon-left-circle"></button>
<form id="pageForm" onsubmit="return false">
<input type="number" onkeyup="checkDigits();" name="pageNumberInput" onfocus="this.value=''"
id="pageNumberInput" max="604" min="1" title="Directly go to page…">
<input type="submit" name="go" value="submit" onclick="return numberOfPage();"; style="display: none"/>
</form>
<button id="turnRight" onclick="turnPage(-2);" title="Turn right (D)" class="icon-right-circle"></button>
</div>
<div class="footerSettings">
<button id="quickSwitch" onclick="quickSwitch();" title="Flip to last page (E)" class="icon-switch"></button>
<button id="toggleTheme" onclick="toggleTheme();" title="Switch theme (T)" class="icon-moon"></button>
<button id="fullscreen" onclick="toggleFullscreen();" title="Toggle fullscreen (F11)" class="icon-resize-full"></button>
<button id="zoomOut" onclick="changeZoom(-5);" title="Zoom out (-)" class="icon-zoom-out"></button>
<button id="zoomIn" onclick="changeZoom(+5);" title="Zoom in (+)" class="icon-zoom-in"></button>
</div>
</div>
<div id="wrapper">
<img class="resize" id="leftPage">
<img class="resize" id="rightPage">
</div>
<script type="text/javascript" src="surahs.js"></script>
<script type="text/javascript" src="script.js"></script>
<link rel="stylesheet" href="assets/icon-font/css/fontello.css">
<link rel="stylesheet" href="assets/sourceSans.css">
</body>