-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (61 loc) · 1.96 KB
/
index.html
File metadata and controls
67 lines (61 loc) · 1.96 KB
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
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="./css/reset.css" />
<link rel="stylesheet" href="./css/normilize.css" />
<link
rel="stylesheet"
href="https://unpkg.com/flickity@2/dist/flickity.min.css"
/>
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<!-- Flickity HTML init -->
<div
id="comicBig"
class="carousel carousel-main"
data-flickity='{ "setGallerySize": false, "pageDots": false }'
></div>
<div id="zoom" class=""></div>
<!-- nav -->
<div id="pages" class="pages-hidden"></div>
<!-- Buttons -->
<div class="menu">
<div id="counter" class="item no-show-tablet no-show-mobile">
<div id="counterNumber" class="counter">
Pagnia 1 de 24
</div>
</div>
<div id="btnPages" class="item">
<span id="icon-pages" class="sprite-pages icons-menu" />
</div>
<div id="btnDouble" class="item no-show-mobile">
<span id="icon-double" class="sprite-two-pages icons-menu"></span>
</div>
<div id="btnZoom" class="item no-show-tablet no-show-mobile">
<span id="icon-zoom" class="sprite-zoom icons-menu"></span>
</div>
<div class="item title">
<span class="title-comic">
NOMBRE DEL COMIC ASFAV ADVAD F AF ASDF
</span>
</div>
<div class="item">
<a
href="https://www.ecccomics.com/"
target="_blank"
rel="noopener noreferrer"
>
<span id="icon-logo" class="sprite-logo icons-menu"></span>
</a>
</div>
</div>
<script src="./img/comic/data.js"></script>
<script src="./js/zoom.js"></script>
<script src="https://unpkg.com/flickity@2/dist/flickity.pkgd.min.js"></script>
<script src="./js/main.js"></script>
</body>
</html>