-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
107 lines (98 loc) · 3.03 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description"
content="Colour Science Precis for the CGI Artist">
<meta name="keywords"
content="color,colorspace,color-spaces,colour,colourspace,colour-spaces,color-science,colour-science,posters,precis">
<meta name="author" content="Colour Developers">
<title>Colour Science Precis for the CGI Artist</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/viewerjs/1.11.6/viewer.css"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Poppins:400,700,900"
rel="stylesheet">
<style>
body {
background-color: #111;
color: #E5E5E5;
font-family: "Poppins", sans-serif;
}
h1 {
font-weight: lighter;
text-align: center;
}
a {
color: #E5E5E5;
}
img {
cursor: pointer;
border: solid 2px transparent;
}
img:hover {
border-color: #E5E5E5;
}
.gallery {
display: flex;
align-items: center;
flex-wrap: wrap;
justify-content: space-evenly;
}
.photo img {
padding: 0px;
width: 447px;
object-fit: cover;
}
</style>
</head>
<body>
<h1>Colour Science Precis for the CGI Artist</h1>
<div class="gallery" id="images">
<div class="photo">
<img
data-original="posters/Colour%20Science%20Precis%20-%20Page%201.png"
src="posters/Colour%20Science%20Precis%20-%20Page%201%20-%20Thumbnail.jpg"
alt="Picture 1">
</div>
<div class="photo">
<img
data-original="posters/Colour%20Science%20Precis%20-%20Page%202.png"
src="posters/Colour%20Science%20Precis%20-%20Page%202%20-%20Thumbnail.jpg"
alt="Picture 2">
</div>
<div class="photo">
<img
data-original="posters/Colour%20Science%20Precis%20-%20Page%203.png"
src="posters/Colour%20Science%20Precis%20-%20Page%203%20-%20Thumbnail.jpg"
alt="Picture 3">
</div>
</div>
<p style="text-align: center;">v1.5 - <a
href="https://www.colour-science.org">colour-science.org</a>
- May 2024 - CC BY-SA 4.0 - <a
href="https://github.com/colour-science/colour-science-precis">Github</a>
</p>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/viewerjs/1.11.6/viewer.min.js"></script>
<script>
const gallery = new Viewer(document.getElementById('images'), {
url: "data-original",
toolbar: {
zoomIn: 4,
zoomOut: 4,
oneToOne: 4,
reset: 4,
prev: 4,
play: {
show: 4,
size: 'large',
},
next: 4,
rotateLeft: 0,
rotateRight: 0,
flipHorizontal: 0,
flipVertical: 0,
},
});
</script>
</html>