-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
161 lines (135 loc) · 4.61 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>liQen</title>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="css/reveal-pk.css">
<link rel="stylesheet" href="css/theme-pk/simple.css" id="theme">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<script src="https://use.fontawesome.com/217857b264.js"></script>
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
<style>
#player .graph svg{
width: 100%;
height: 200px;
}
.small-text {
font-size: 12px;
}
#title {
color: #87cb3d;
}
.hl1 {
color: white;
background: #87cb3d;
}
.hl2 {
color: white;
background: #87cb3d;
}
#viz {
color: red;
}
.arrows, .fa-arrow-down, .fa-arrow-up {
margin-top: 10%;
}
h4 {
text-decoration: underline;
}
ul, li {
list-style: none;
display: inline-block;
}
li {
padding: 10%;
margin.right: 10%;
}
img {
border: 0px;
background: white;
}
.llip {
list-style:armenian;
}
</style>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<!-- START -->
<div class="reveal"> <!-- 1-->
<div class="slides">
<section data-autoslide="20000">
<h1 id="title">liQen</h1>
<p>Mapping micro-conflicts through people <span style="color: #ff5e3a;">experiences</span></p>
<img style="width:150px;height:100px;margin-top:15%;" src="img/logo-caf.png" >
</section>
<section data-autoslide="30000"> <!--6 -->
<h2 style="color: #87cb3d">About Numbers</h2>
<p>3.5 < 35</p>
<img class="fragment fade-in" src="http://i.dailymail.co.uk/i/pix/2013/07/03/article-2354580-1AA3C2C7000005DC-463_634x557.jpg">
</section>
<section data-autoslide="30000"><!--7 -->
<h2 style="color: #87cb3d">About Numbers</h2>
<p>The perception under certain circumstances has an informative value to reduce machine bias.</p>
<a href="http://bitly.com/liqen-project"><img src="img/human.jpg" ></a>
</section>
<section data-autoslide="10000"> <!--8-->
<h2 style="color: #87cb3d">Tour</h2>
<p>Let's start <a href="https://crishernandezmaps.github.io/liqen-medialab/sense/" target="_blank">here <i class="fa fa-hand-o-right" aria-hidden="true"></i></a></p>
</section>
<section data-autoslide="30000"> <!--9-->
<h2 style="color: #87cb3d">Humans are back!</h2>
<a href="http://bitly.com/liqen-project">http://bitly.com/liqen-project</a>
</section>
</div>
</div>
<!-- END -->
<script src="lib/js/head.min.js"></script>
<script src="js/reveal-pk.js"></script>
<script>
// More info https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
autoSlide: 30000, //30000
showNotes: false,
transition: 'slide', // none/fade/slide/convex/concave/zoom
// More info https://github.com/hakimel/reveal.js#dependencies
dependencies: [
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'plugin/zoom-js/zoom.js', async: true },
{ src: 'plugin/notes/notes.js', async: true }
]
});
</script>
<script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script type="text/javascript" src="https://tonejs.github.io/CDN/latest/Tone.js"></script>
<script src="js/sound.js"></script>
<script id="audioElement" type="text/javascript">
//make the noise and connect it to the output
var noise = new Tone.Noise({
"volume" : -20,
"type" : "brown"
}).toMaster();
</script>
</body>
</html>