-
Notifications
You must be signed in to change notification settings - Fork 0
/
papaya_test.html
109 lines (89 loc) · 3.54 KB
/
papaya_test.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
<!DOCTYPE html>
<!--saarbuckle, updated June 2020-->
<html>
<head>
<style>
::-moz-selection { /* Code for Firefox */
background: gold;
}
::selection {
background: gold;
}
</style>
<title>SpencerArbuckle</title>
<base target="_blank"> <!--default to open links in new window-->
<!--CSS files-->
<link rel="stylesheet" href="assets/imgs/academicons/css/academicons.css"/>
<link rel="stylesheet" href="assets/style.css"/>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-155943809-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-155943809-1');
</script>
<!--Embeded logos-->
<script src="https://use.fontawesome.com/d4bd914e04.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<!--favicon-->
<link rel="icon" type="image/png" href="assets/imgs/logos/logo.png">
<link rel="apple-touch-icon" href="assets/imgs/logos/logo.png">
<!--papaya-->
<!-- iOS meta tags -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="stylesheet" type="text/css" href="assets/papaya/papaya.css?build=1449" />
<script type="text/javascript" src="assets/papaya/papaya.js?build=1449"></script>
<script type="text/javascript">
var params = [];
params["worldSpace"] = true;
params["images"] = ["assets/papaya/s04_anatomical.nii", "assets/papaya/s04_glm4_LDC_avg.nii"];
params["s04_glm4_LDC_avg.nii"] = {min:0.005, max:0.05, lut:"Fire"};
params["coordinate"] = [-30,-19.4,52.5];
</script>
</head>
<body class="onecol">
<div id="container">
<!--HEADER-->
<div id="header">
<img class="sitelogo" src="assets/imgs/logos/logo.png">
<a class="masthead" href="index.html" target="_self"><h class="masthead">Spencer Arbuckle</h></a>
</div>
<!--MENU-->
<div id="menuBar">
<!--menu bar-->
<ul class="button">
<li class="button"><a class="button" href="research.html" target="_self">Research</a></li>
<li class="button"><a class="button" href="publications.html" target="_self">Publications</a></li>
<li class="button"><a class="button" href="about.html" target="_self">About</a></li>
<li class="button"><a class="buttonCurrent" href="papaya_test.html" target="_self">Super Secret Page</a></li>
<div id="iconBar">
<!--github-->
<a title="GitHub" class="icon" href="https://github.com/saarbuckle">
<i class="fa fa-github fa-lg"></i>
</a>
<!--twitter-->
<a title="Twitter" class="icon" href="https://twitter.com/saarbuckle">
<i class="fa fa-twitter fa-lg"></i>
</a>
<!--linkedin-->
<a title="LinkedIn" class="icon" href="https://www.linkedin.com/in/spencerarbuckle/">
<i class="fa fa-linkedin"></i>
</a>
<!--google scholar-->
<a title="Google Scholar" class="icon" href="https://scholar.google.com/citations?user=7Cttf8YAAAAJ&hl=en">
<i class="ai ai-google-scholar ai-lg"></i>
</a>
</div>
</ul>
</div>
<div id="contentMain">
<div style="width:80%; height:80%; margin-left:auto; margin-right:auto;">
<div class="papaya" data-params="params">
</div>
</div>
</div>
</div> <!--container-->
</body>
</html>