Add a proper viewer
This commit is contained in:
parent
ee4fbcf951
commit
c16a4eba11
4 changed files with 45 additions and 1 deletions
Before Width: | Height: | Size: 191 KiB After Width: | Height: | Size: 191 KiB |
25
index.css
Normal file
25
index.css
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
.ui {
|
||||||
|
display: inline-block;
|
||||||
|
margin: 10px;
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
background: rgb(130, 130, 130);
|
||||||
|
border: solid rgb(100, 100, 100) 2px;
|
||||||
|
padding: 10px;
|
||||||
|
font-weight: bold;
|
||||||
|
color: rgb(255,255,255);
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ui-right {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
img.art {
|
||||||
|
display: block;
|
||||||
|
margin: auto;
|
||||||
|
border: none;
|
||||||
|
border-radius: 0;
|
||||||
|
width: 500px;
|
||||||
|
max-width: 80vw;
|
||||||
|
}
|
15
index.html
15
index.html
|
@ -1,8 +1,21 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
<!-- You may want to copy this file manually... -->
|
||||||
|
<link rel="stylesheet" href="https://onezderv.codeberg.page/home/index.css">
|
||||||
|
<link rel='stylesheet' href='index.css'>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<p>See <a href='https://codeberg.org/onezDerv/comic'>comics</a></p>
|
<section id='main'>
|
||||||
|
<h1>Onez's Comics</h1>
|
||||||
|
<img src='comics/0.svg' class='art comic'>
|
||||||
|
<a href='#' class='ui ui-left'>Previous</a>
|
||||||
|
<a href='#' class='ui ui-right'>Next</a>
|
||||||
|
<a href='https://codeberg.org/onezDerv/home' class='ui'>Source</a>
|
||||||
|
<a href='https://zenoverse.net/' class='ui'>More</a>
|
||||||
|
</section>
|
||||||
|
<script src='index.js'></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
|
6
index.js
Normal file
6
index.js
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
let params = new URLSearchParams(window.location.search);
|
||||||
|
let comicPage = params.get('id') || 0;
|
||||||
|
|
||||||
|
document.querySelector('.comic').src = `comics/${comicPage}.svg`;
|
||||||
|
document.querySelector('.ui-left').href = `?id=${comicPage * 1 - 1}`;
|
||||||
|
document.querySelector('.ui-right').href = `?id=${comicPage * 1 + 1}`;
|
Loading…
Reference in a new issue