-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
63 lines (60 loc) · 1.95 KB
/
test.html
File metadata and controls
63 lines (60 loc) · 1.95 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
<!DOCTYPE HTML>
<html>
<head>
<title>Test page</title>
<meta name="author" content="Samuele Ferri">
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" href="assets/css/main.css"/>
<link rel="stylesheet" href="assets/viewerjs/viewer.css">
</head>
<body>
<!-- Header -->
<header>
<!-- Nav -->
<nav>
<!-- Mobile format -->
<details>
<summary>Test</summary>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="warehouse.html">Warehouse</a></li>
<li><a href="photoblog.html">Portfolio</a></li>
<li><a href="about.html">About me</a></li>
</ul>
</details>
<!-- Desktop format -->
<div id="nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="warehouse.html">Warehouse</a></li>
<li><a href="photoblog.html">Portfolio</a></li>
<li><a href="about.html">About me</a></li>
</ul>
</div>
</nav>
</header>
<article>
<div id="gallery">
<ul class="images">
<li><img src="assets/photo/barca-fontana.webp" alt="111" style="width: 10%;"></li>
<li><img src="assets/photo/gattone.webp" alt="22" style="width: 10%;"></li>
<li><img src="assets/photo/barca-fontana.webp" alt="333" style="width: 10%;"></li>
</ul>
</div>
</article>
<script type="module" src="./assets/viewerjs/viewer.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
new Viewer(document.getElementById('gallery'), {
toolbar: 0,
movable: false,
rotatable: false,
initialCoverage: 1
});
});
</script>
</body>
</html>