-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheyetracking.html
More file actions
169 lines (152 loc) · 9.24 KB
/
eyetracking.html
File metadata and controls
169 lines (152 loc) · 9.24 KB
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
<!DOCTYPE html>
<html lang="en"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Eyetracking Visualisierung</title>
<!-- Bootstrap Core CSS - Uses Bootswatch Flatly Theme: http://bootswatch.com/flatly/ -->
<link href="utilities/css/bootstrap.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="utilities/css/eyetracking.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="utilities/css/css.css" rel="stylesheet" type="text/css">
<link href="utilities/css/css_002.css" rel="stylesheet" type="text/css">
<!-- Eyetracking CSS -->
<link href="utilities/colorpicker/colorpicker.css" rel="stylesheet" type="text/css" media="screen">
<link href="utilities/css/jquery-ui.css"rel="stylesheet" type="text/css">
<!--Eyetracking JS-->
<script type='text/javascript' src='utilities/js/jquery.js'></script>
<script type='text/javascript' src='utilities/js/main.js'></script>
<script type='text/javascript' src='utilities/js/animation.js'></script>
<script type='text/javascript' src='utilities/colorpicker/colorpicker.js'></script>
<script type='text/javascript' src='utilities/js/FileSaver.js'></script>
<script type='text/javascript' src='utilities/js/canvas-toBlob.js'></script>
<script type='text/javascript' src='utilities/js/heatmap.js'></script>
<script type='text/javascript' src='utilities/js/jquery-ui.js'></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body id="page-top" class="index">
<!-- Demo Section -->
<section class="success" id="demo">
<div class="container">
<div class="row">
<div class="col-lg-12"><h3>Eyetracking Visualisierung</h3></div>
<div class="col-lg-12 text-center">
Dateiauswahl:
<select name="fileSelection" id="fileSelection" onchange="fileChanged()">
<option value=donothing>Bitte wählen</option>
</select>
<hr class="eyetracking">
</div>
</div>
<div id="header">
<div style="width:100%;">
<div align="left">
<strong id="visTag" style="display: none;">Visualisierung: </strong>
<select name="visualizationSelection" id="visSelect" style="display: none;" onchange="visualizationChanged()">
<option value="gazeplot">Blickpfade</option>
<option value="heatmap">Heatmap</option>
<option value="attentionmap">Attentionmap</option>
</select>
<input type="button" id="saveButton" value="Ergebnis speichern" style="display: none;" onclick="saveResult()">
<input type="checkbox" name="fitToScreen" id="fitToScreen" value="fitToScreen" style="display: none;" onchange="fitImageToScreen()"><strong id="ftsTag" style="display: none"> Fit-to-Screen</strong></p>
</div>
<br>
</div>
</div>
<div class="settingsDiv" id="gazeplotSettingsDiv">
<h3>Einstellungen:</h3>
<p><input type="checkbox" name="showEnum" id="showEnum" value="showEnum" onchange="drawGazeplot()" checked="checked"> Zeige Reihenfolge</p>
<p><input type="checkbox" name="showPath" id="showPath" value="showPath" onchange="drawGazeplot()" checked="checked"> Zeige Blickpfad</p>
Radius:
<select name="radiusSelect" id="radiusSelect" onchange="drawGazeplot()">
<option value="duration">Dauer</option>
<option value="samesize">gleiche Größe</option>
</select>
<p></p>
Skalieren: <input type="range" id="radiusRange" min="1" max="100" value="50" onchange="drawGazeplot()" />
Opazität: <input type="range" id="opacityRange" min="0" max="100" value="100" onchange="drawGazeplot()" />
<div class="linecolorpicker" id="lineColor" style="background:#000000; width:30px; height:30px; z-index:5; border:2px solid #000000;" onclick="showColorpicker(lineColorpicker)">
<p style="margin-left:35px">Linienfarbe</p>
</div>
<div id="lineColorpicker"></div>
<p></p>
</div>
<div class="settingsDiv" id="heatmapSettingsDiv">
<h3>Einstellungen:</h3>
Count:
<select name="countSelect" id="countSelect" onchange="drawHeatmap()">
<option value="duration">Dauer</option>
<option value="default">Einheitlich</option>
</select>
<p></p>
Radius: <input type="range" id="heatmapRadius" min="2" max="100" value="30" step="2" onchange="drawHeatmap()" />
Opazität: <input type="range" id="heatmapOpacity" min="1" max="100" value="100" onchange="drawHeatmap()" />
<p>Farbgradient:</p>
<div id="c1Color" style="background:#0000ff; width:50px; height:30px; z-index:5; border:2px solid #000000; margin-left:10px; float:left; position:relative; display:inline-block;" onclick="showColorpicker(c1Colorpicker)"></div>
<div id="c1Colorpicker"></div>
<div id="c2Color" style="background:#00ff00; width:50px; height:30px; z-index:5; border:2px solid #000000; margin-left:9px; float:left; position:relative; display:inline-block;" onclick="showColorpicker(c2Colorpicker)"></div>
<div id="c2Colorpicker"></div>
<div id="c3Color" style="background:#ff0000; width:50px; height:30px; z-index:5; border:2px solid #000000; margin-right:10px; float:right; position:relative; display:inline-block;" onclick="showColorpicker(c3Colorpicker)"></div>
<div id="c3Colorpicker"></div>
</div>
<div class="settingsDiv" id="attentionmapSettingsDiv">
<h3>Einstellungen:</h3>
Count:
<select name="attentionCountSelect" id="attentionCountSelect" onchange="drawAttentionmap()">
<option value="duration">Dauer</option>
<option value="default">Einheitlich</option>
</select>
<p></p>
Radius: <input type="range" id="attentionmapRadius" min="2" max="100" value="30" step="2" onchange="drawAttentionmap()" />
Cover-Opazität: <input type="range" id="attentionmapOpacity" min="1" max="100" value="100" onchange="drawAttentionmap()" />
<div class="attcolorpicker" id="attColor" style="background:#000000; width:30px; height:30px; z-index:5; border:2px solid #000000; margin-left:10px; float:left; position:relative; display:inline-block;" onclick="showColorpicker(attColorpicker)">
<p style="margin-left:35px">Coverfarbe</p>
</div>
<div id="attColorpicker"></div>
</div>
<div id="imageDiv" style="position:relative; margin-left:200px"></div>
<div id="animationDiv"></div>
<div id="multipleUserDiv"/>
</div>
</section>
<!-- Footer -->
<footer class="text-center">
<div class="footer-above">
<div class="container">
<div class="row">
<div class="footer-col col-md-4">
<h3>Implementation</h3>
<p>Christopher Krey<br>
Universität Koblenz-Landau<br>
</p>
</div>
<div class="footer-col col-md-4">
<h3>Ansprechpartner</h3>
<p>
<a href="http://www.uni-koblenz-landau.de/campus-koblenz/fb4/west/staff/christoph-schaefer">Christoph Schaefer</a><br>
Raum B104<br>
Email: chrisschaefer at uni-koblenz.de<br>
Tel: +49 261 287-2786<br>
</p>
</div>
<div class="footer-col col-md-4">
<h3>Über WeST</h3>
<p><a href="http://west.uni-koblenz.de/">Institute for Web Science and Technologies</a><br>
Universität Koblenz-Landau<br>
Universitätsstraße 1<br>
56070 Koblenz</p>
</div>
</div>
</div>
</div>
</footer>
</body></html>