-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
41 lines (39 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>MRI Viewer</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="pull-center">
<div id="principal-loader">
<div id="loading-bar">Please wait...</div>
</div>
<div id="error">
<h3>There was an error. We're unable to load any brain data. 😢</h3>
</div>
<h1>MRI Viewer</h1>
<div class="view-ports">
<div class="view-ports-block">
<div class="view-port" id="z-view-wrapper" data-view="z"></div>
<div class="view-port" id="x-view-wrapper" data-view="x"></div><br/>
<div class="view-port" id="y-view-wrapper" data-view="y"></div>
</div>
</div>
<hr>
<form class="view-settings">
<h2>Settings</h2>
<div class="toggle">
<input class="input input-checkbox" type="checkbox" id="toggle-cross-hairs" value="enabled" checked>
<label for="toggle-cross-hairs">Toggle Cross Hairs</label>
</div>
<div class="file-upload-wrapper" data-text="Select an '.nii' file!">
<input name="file-upload-field" type="file" id="file-input" name="file[]" class="file-upload-field"
value="">
</div>
</form>
</div>
<script src="script.js"></script>
</body>
</html>