-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.08 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
<html>
<head>
<meta charset="utf-8">
<script type="text/JavaScript" src="jquery.js"></script>
<script type="text/JavaScript" src="script.js"></script>
<link rel="stylesheet" type="text/css" href="styl.css">
</head>
<body>
<span id="ikona"><img src="nastaveni.png"></span>
<div id="divek">
Načítám...
</div>
<div id="nastaveni">
<h1 align="center">Nastavení</h1>
<h3>Jas textu</h3>
<div class="tlacitka">
<input type="button" value=" - " id="opacity-minus" onclick="zmenit('opacity', $(this))">
<span id="opacity">1</span>
<input type="button" value="+" id="opacity-plus" onclick="zmenit('opacity', $(this))">
</div>
<h3>Velikost textu</h3>
<div class="tlacitka">
<input type="button" value=" - " id="font-size-minus" onclick="zmenit('font-size', $(this))">
<span id="font-size">1em</span>
<input type="button" value="+" id="font-size-minus" onclick="zmenit('font-size', $(this))">
</div>
<div id="procenta">
Přečteno <span id="vyska"></span> %<br>
</div>
</div>
<div id="lista"></div>
</body>
</html>