-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcluster_4.html
60 lines (58 loc) · 2.96 KB
/
cluster_4.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>A·kin</title>
<link rel="stylesheet" href="styles.css">
<link rel='shortcut icon' type='image/x-icon' href='/favicon.ico' />
</head>
<body>
<div id="loader" class="on"><p>loading...</p></div>
<nav id="desktop-nav">
<a href="./kolam.html"><img class='kolam' src="./kolam.svg"><span>Clusters</span></a>
<a href="./about.html">About</a>
<a href="./video.html">Video</a>
<a href="./categorisation.html">Categorisation</a>
<a href="./credits.html">Credits</a>
</nav>
<img id="mobile-nav-trigger" class='kolam' src="./kolam.svg">
<nav id="mobile-nav">
<a href="./kolam.html">Home (Clusters)</a>
<a href="./about.html">About</a>
<a href="./video.html">Video</a>
<a href="./categorisation.html">Categorisation</a>
<a href="./credits.html">Credits</a>
</nav>
<div class="clust" id="outer">
<p id="instructions">
<span id="desktop-only">Click a layer to view its provenance. Click again to move past the layer.</span><span id="mobile-only">Tap and hold a layer to view it's provenance. Tap again to move past the layer.</span><br>
<a href="./cluster_4.html">Click here to reset→</a>
</p>
<div id="inner">
<div id="history"><p id="hist-label">Layer History (click to return to an image):</p><div id="history-icons"></div></div>
<div id="wrapper">
<a href="/cluster_4.html" id="over">You've reached the last layer. Click to restart</a>
</div>
<div id="text">
<h1>Portrait of a seated woman.</h1><p>Composite of 13 photographs from R. Dasen Studio in Karaikudi, Victoria Studio in Madurai, Thangam Studio in Pattukkottai, Muthuvel Studio in Thanjavur, and other unidentified studios – all from the stars.archive.<br><br>“I have so many individual portraits of the men in my family but very few of my matriarchs, especially those that aren't ID photographs. A few of the photos in this cluster could actually be group photos that have been edited by studio photographers using a technique called vignetting.”</p>
</div>
</div>
</div>
<script src="./p5.min.js"></script>
<script src="./4.js"></script>
<script>
document.querySelector("#mobile-nav-trigger").addEventListener("click", function(){
if(document.querySelector("#mobile-nav").classList.contains("open")){
document.querySelector("#mobile-nav").classList.remove("open")
}else{
document.querySelector("#mobile-nav").classList.add("open")
}
})
</script>
<script src="https://unthinking.photography/assets/affiliate/affiliate.js"
id="utp" data-utp-url="https://unthinking.photography/articles/akin"
data-utp-pos=“top"></script>
</body>
</html>