-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
126 lines (108 loc) · 3.91 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Bodega - 24 hours Documentary</title>
<link href="https://fonts.googleapis.com/css?family=Mukta|PT+Sans+Narrow" rel="stylesheet">
<link rel="stylesheet" href="dist/css/style.css">
</head>
<body id="body">
<div id="overlay"></div>
<div id="cover">
<div id="intro">
<h1 id="title" class="title">BODEGA</h1>
<p id="description">A 24-hour web documentary that captures the everyday interactions and transactions of a small bodega in Queens, NY.
<br>
</p>
<button id="watchBtn" class="btn">Watch</button>
<button id="creditsBtn" class="btn">Credits</button>
</div>
<div id="credits">
<h1 id="titleCredits" class="title">BODEGA</h1>
<div id="madeby" class="credit">
<div class="leftcredit">
<p class="">Made by</p>
</div>
<div class="rightcredit">
<a href="https://www.jlimetc.com/">Jenny Lim</a>
<a href="http://cvalenzuelab.com/">Cristóbal Valenzuela</a>
<a href="http://www.electricsleep.net/">Scott Reitherman</a>
</div>
</div>
<div id="bodegaOwner" class="credit">
<div class="leftcredit">
<p class="">Bodega</p>
</div>
<div class="rightcredit">
<a href="https://www.yelp.com/biz/lic-deli-and-grocery-long-island-city">LIC Deli & Grocery</a>
<a href="#">2901 39th Ave <br>
Long Island City, NY 11101 <br>
Long Island City</a>
</div>
</div>
<div id="itplogo" class="credit">
<p>Made at</p>
<a href="https://tisch.nyu.edu/itp">
<img src="dist/images/itplogo.png" alt="" srcset="dist/images/itplogo.png">
</a>
</div>
<div>
<button id="fromCreditsHomeBtn" class="btn">Back</button>
</div>
<!-- <div id="year" class="credit">
2017
</div> -->
</div>
</div>
<div id="loader">
<img src="dist/images/bananaloading.gif" alt="loading" style="width: 100px;">
<p>Loading...</p>
<p id="turnon">Please turn on your volume</p>
</div>
<div id="app">
<div id="time">
<h1 id="current_time"></h1>
<p id="currentBodega">LIC Deli & Grocery, Long Island City, NY.</p>
</div>
<div class="subtitles" id="subtitles">
<h4 class="runningSubtitles"></h4>
<br>
<h4 class="runningSubtitles"></h4>
</div>
<div id="miniTitle">
<h5>BODEGA</h5>
<p>A 24-hour web documentary</p>
</div>
<div id="buttonBack">
<button id="backHomeBtn" class="btn">Home</button>
</div>
</div>
<!-- timeline -->
<div id="editor">
<div id="play" class="audioBtn">Play</div>
<div id="stop" class="audioBtn">Stop</div>
<div id="save" class="audioBtn">Save</div>
<div id="loadSubtitlesFile" class="audioBtn">Load S</div>
<div id="addSubtitle" class="audioBtn">Add S</div>
<div id="removeSubtitle" class="audioBtn">Remove S</div>
<div id="loadModelsFile" class="audioBtn">Load M</div>
<div id="addModel" class="audioBtn">Add M</div>
<div id="removeModel" class="audioBtn">Remove M</div>
<div id="close" class="audioBtn" style="float:right;padding:2px;">X</div>
<div id="move" class="audioBtn" style="float:right;padding:2px;">M</div>
<div id="waveform"></div>
<div id="modelsKeys"></div>
<div id="subtitlesKeys"></div>
<div id="modelTimeTooltip" contenteditable="true"></div>
<div id="modelTooltip" contenteditable="true"></div>
<div id="subtitleTimeTooltip" contenteditable="true"></div>
<div id="subtitleTooltip" contenteditable="true"></div>
<div id="currentTime">00:00:00</div>
<!-- <div id="subtitlesTracks"></div> -->
</div>
<!-- timeline -->
<script src="dist/bundle.js"></script>
</body>
</html>