-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (85 loc) · 2.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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>F-WHEAT VIEWER</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f4f4f4;
color: #333;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 10px 20px;
text-align: center;
font-size: 24px;
}
#gallery {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin: 20px;
justify-content: center;
}
.thumbnail-container {
width: 150px;
}
.date-label {
text-align: center;
background-color: rgba(0, 0, 0, 0.8);
color: white;
padding: 2px;
font-size: 14px;
border-radius: 5px;
}
.thumbnail {
width: 150px;
height: 150px;
overflow: hidden;
border: 1px solid #ccc;
cursor: pointer;
}
.thumbnail img {
width: 100%;
height: auto;
}
#fullImage, #graphImage {
width: 100%;
display: none;
margin-top: 20px;
}
#imageDisplay {
display: none;
text-align: center;
}
#backButton {
display: none;
margin-top: 20px;
width: 50px;
height: 50px;
background-color: black;
border: none;
border-radius: 50%;
color: white;
font-size: 16px;
line-height: 50px; /* Center the text vertically */
text-align: center;
cursor: pointer;
}
</style>
</head>
<body>
<header>F-WHEAT VIEWER</header>
<div id="gallery"></div>
<div id="imageDisplay">
<button id="backButton">←</button>
<img id="graphImage">
<img id="fullImage">
</div>
<script src="app.js"></script>
</body>
</html>