-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvideo.html
40 lines (40 loc) · 1.86 KB
/
video.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
<!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">
</head>
<body>
<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 style="padding:56.25% 0 0 0;position:relative;"><iframe src="https://player.vimeo.com/video/754509083?h=f290cba9b2&title=0&byline=0&portrait=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe></div><script src="https://player.vimeo.com/api/player.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>