-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
index.html
174 lines (154 loc) · 6.38 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
162
163
164
165
166
167
168
169
170
171
172
173
174
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>VikusViewer</title>
<meta name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="format-detection" content="telephone=no" />
<meta name="pinterest" content="nohover" />
<base target="_blank" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/infobar.css" />
<link rel="stylesheet" href="css/timeline.css" />
<script src="js/d3.v3.min.js"></script>
<script src="js/vue.min.js"></script>
<script src="js/marked.min.js"></script>
<script src="js/lodash.min.js"></script>
<script src="js/pixi.min.js"></script>
<script src="js/pixi-packer-parser.js"></script>
<script src="js/loader.js"></script>
<script src="js/canvas.js"></script>
<script src="js/timeline.js"></script>
<script src="js/search.js"></script>
<script src="js/tags.js"></script>
<script src="js/utils.js"></script>
<script src="js/modernizr-custom.js"></script>
<!--[if lt IE 9]>
<script
src="http://html5shiv.googlecode.com/svn/trunk/html5.js"
type="text/javascript"
></script>
<![endif]-->
<!--
,--.
,---, ,--/ /| .--.--.
,---.,`--.' |,---,': / ' ,--, / / '.
/__./|| : :: : '/ / ,'_ /|| : /`. /
,---.; ; |: | '| ' , .--. | | :; | |--`
/___/ \ | || : |' | / ,'_ /| : . || : ;_
\ ; \ ' |' ' ;| ; ; | ' | | . . \ \ `.
\ \ \: || | |: ' \ | | ' | | | `----. \
; \ ' .' : ;| | ' : | | : ' ; __ \ \ |
\ \ '| | '' : |. \| ; ' | | ' / /`--' /
\ ` ;' : || | '_\.': | : ; ; |'--'. /
: \ |; |.' ' : | ' : `--' \ `--'---'
'---" '---' ; |,' : , .-./
'---' `--`----'
,---, ,---,. .---. ,---,.,-.----.
,---.,`--.' | ,' .' | /. ./| ,' .' |\ / \
/__./|| : :,---.' | .--'. ' ;,---.' |; : \
,---.; ; |: | '| | .' /__./ \ : || | .'| | .\ :
/___/ \ | || : |: : |-, .--'. ' \' .: : |-,. : |: |
\ ; \ ' |' ' ;: | ;/|/___/ \ | ' ': | ;/|| | \ :
\ \ \: || | || : .'; \ \; :| : .'| : . /
; \ ' .' : ;| | |-, \ ; ` || | |-,; | | \
\ \ '| | '' : ;/| . \ .\ ;' : ;/|| | ;\ \
\ ` ;' : || | \ \ \ ' \ || | \: ' | \.'
: \ |; |.' | : .' : ' |--" | : .': : :-'
'---" '---' | | ,' \ \ ; | | ,' | |.'
`----' '---" `----' `---'
christopher pietsch
2015-2018
-->
</head>
<body>
<div id="hiddenreload"></div>
<div class="browserInfo">
<p>
This visualization is not optimized for mobile phones and needs WebGL
enabled.
</p>
<p>Please come back on a Computer.</p>
<span>💡</span>
</div>
<div class="search"></div>
<div class="page">
<div class="detailLoader"></div>
<div class="sideLoader"></div>
<div class="sidebar detail hide">
<div class="slidebutton"></div>
<div class="outer">
<div id="detail" class="inner">
<div class="entries" v-if="item">
<div v-if="item._imagenum > 1" class="entry wide pages">
<div class="label">Seite</div>
<div class="content">
<span v-for="i in parseInt(item._imagenum)" v-bind:key="i" v-on:click="displayPage(i-1)"
v-bind:class="{ active: i === page+1, keyword: true }">
{{ i }}
</span>
</div>
</div>
<div v-for="entry in structure" v-bind:key="entry.name" v-bind:class="entry.display" class="entry"
v-if="hasData(entry)">
<div v-if="entry.name" class="label">{{ entry.name }}</div>
<div class="content">
<span v-if="entry.type === 'keywords'">
<span v-for="keyword in item[entry.source]" v-bind:key="keyword" class="keyword">
{{ keyword }}
</span>
</span>
<span v-else-if="entry.type === 'link'">
<a :href="item[entry.source]" target="_blank">Link</a>
</span>
<span v-else-if="entry.type === 'markdown'">
<span v-html="getContent(entry)"></span>
</span>
<span v-else-if="entry.type === 'function'">
<span v-html="getContent(entry)"></span>
</span>
<span v-else>
{{ getContent(entry) }}
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="navi">
</div>
<div class="infobar sneak">
<div class="infobutton">
<svg width="16px" height="24px" viewBox="0 0 16 24">
<path d="M13.6824546,2 L3.7109392,11.9715154 L13.7394238,22" stroke="#FFF" stroke-width="5"></path>
</svg>
</div>
<div class="outer">
<div class="inner">
<div id="infobar" class="infosidebar">
<span v-html="marked(info)" style="word-break: normal; white-space: pre-wrap;"></span>
<div class="credit">
Powered by
<a href="https://vikusviewer.fh-potsdam.de/" target="_blank">VIKUS Viewer</a>
</div>
</div>
</div>
</div>
</div>
<div class="searchbar">
<input type="input" name="suche" />
<div class="button">
<div class="openbutton"></div>
</div>
</div>
</div>
<script src="js/sidebars.js"></script>
<script src="js/viz.js"></script>
</body>
</html>