forked from CoffeeMensch/readManga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (31 loc) · 930 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="./styles/main.css">
</head>
<body onload="slider_Start()">
<header>
<div class="plasing">
<button id="button-reg" onclick="replaceMainContent('registration')">Регистрация</button>
<button id="button-enter" onclick="replaceMainContent('enterPanel')">Вход</button>
</div>
</header>
<main id="main">
<div class="garisontalContainer">
<button class="button_Slider" onclick="leftSlide()">Left</button>
<div id="gallery">
<li class="main_container" id="main_container"></li>
</div>
<button class="button_Slider" onclick="rightSlide()">Right</button>
</div>
<canvas id="canvas">
</canvas>
</main>
<footer>
</footer>
<script src="js/viewPaje.js"></script>
<script src="js/slider.js"></script>
</body>
</html>