-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
186 lines (160 loc) · 6.15 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
175
176
177
178
179
180
181
182
183
184
185
186
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="description" content="">
<meta name="author" content="">
<title>Cognitive Anteater Robotics Laboratory (CARL), UC Irvine</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css"/>
<!-- Fonts -->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"/>
<link href="css/animate.css" rel="stylesheet" />
<!-- Squad theme CSS -->
<link href="css/style.css" rel="stylesheet"/>
<link href="color/default.css" rel="stylesheet"/>
<!-- PrettyPhoto -->
<link rel="stylesheet" href="css/prettyPhoto.css" type="text/css" media="screen" charset="utf-8" />
</head>
<body id="page-top" data-spy="scroll" data-target=".navbar-custom">
<!-- ============= BEGIN INTRO ============= -->
<section id="intro" class="intro">
<div class="container">
<div style="position: absolute; top:10px; right:10px">
<a href="https://twitter.com/UCI_CARL" class="twitter-follow-button" data-show-count="false">Follow @UCI_CARL</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</div>
<div class="row">
<div class="slogan wow fadeInDown" data-wow-delay="1s">
<a href="https://www.github.com/UCI-CARL" target="_blank">
<h4>Open-source software projects at the</h4>
<h2>Cognitive Anteater Robotics Laboratory (CARL)</h2>
<h4>University of California, Irvine</h4>
</a>
</div>
<div style="display:table; width:100%; text-align:center;">
<div style="display:table-row;">
<div style="display:table-cell; width:8%;"></div>
<div style="display:table-cell; width:12%; vertical-align: middle" class="button gray">
<a href="http://www.socsci.uci.edu/~jkrichma/ABR" target="_blank">
Android Based Robotics
</a>
</div>
<div style="display:table-cell; width:6%;"></div>
<div style="display:table-cell; width:12%; vertical-align: middle" class="button gray">
<a href="https://github.com/UCI-CARL/CARLsim3" target="_blank">
CARLsim 3
</a>
</div>
<div style="display:table-cell; width:6%;"></div>
<div style="display:table-cell; width:12%; vertical-align: middle" class="button gray">
<a href="https://github.com/UCI-CARL/CARLsim4" target="_blank">
CARLsim 4 beta
</a>
</div>
<div style="display:table-cell; width:6%;"></div>
<div style="display:table-cell; width:12%; vertical-align: middle" class="button gray">
<a href="http://uci-carl.github.io/VisualStimulusToolbox/" target="_blank">
VisualStimulus Toolbox
</a>
</div>
<div style="display:table-cell; width:6%;"></div>
<div style="display:table-cell; width:12%; vertical-align: middle" class="button gray">
<a href="https://www.github.com/UCI-CARL/ABADV" target="_blank">
Allen Brain Atlas-Driven Visualizations
</a>
</div>
<div style="display:table-cell; width:8%"></div>
</div>
</div>
</div>
</div>
</section>
<!-- ============= END INTRO ============= -->
<!-- Jquery -->
<script src="js/jquery-1.11.2.min.js"></script>
<!-- Bootstrap -->
<script src="js/bootstrap.min.js"></script>
<!-- PrettyPhoto -->
<script type="text/javascript" src="js/jquery.prettyPhoto.js"></script>
<!-- Isotope -->
<script src="js/isotope.pkgd.min.js" type="text/javascript" ></script>
<script src="js/jquery.easing.min.js"></script>
<script src="js/jquery.scrollTo.js"></script>
<script src="js/wow.min.js"></script>
<!-- Custom Theme JavaScript -->
<script src="js/custom.js"></script>
<script type="text/javascript" charset="utf-8">
// PrettyPhoto
$(document).ready(function(){
$("a[rel^='prettyPhoto']").prettyPhoto({animationSpeed:'slow',theme:'light_square',
slideshow:false,overlay_gallery: true,social_tools:false,deeplinking:false});
});
</script>
<script type="text/javascript" charset="utf-8">
/*************************
Gallery Scripts
*************************/
var $container = $('.img-gallery');
$container.isotope({
filter: '*',
animationOptions: {
duration: 750,
easing: 'linear',
queue: false,
}
});
$('#gall nav.primary ul a').click(function(){
var selector = $(this).attr('data-filter');
$container.isotope({
filter: selector,
animationOptions: {
duration: 750,
easing: 'linear',
queue: false,
}
});
return false;
});
var $optionSets = $('#gall nav.primary ul'),
$optionLinks = $optionSets.find('a');
$optionLinks.click(function(){
var $this = $(this);
// don't proceed if already selected
if ( $this.hasClass('selected') ) {
return false;
}
var $optionSet = $this.parents('#gall nav.primary ul');
$optionSet.find('.selected').removeClass('selected');
$this.addClass('selected');
});
/*************************
End of Gallery Scripts
*************************/
$(function(){
// Section Experience / Education
// ---------------------------------------------------
// Collapse div .panel-body
var resumeCollapse = function (){
var experience = $('#experience .collapse');
var ww = Math.max($(window).width(), window.innerWidth);
// If device is a Movil < 768 (smartphones)
if (ww < 768){
experience.collapse('show');
}
};
// For use smartload function is neccesary debouncer.js
// Call resumeCollapse() when window is loaded.
$(window).smartload(function(){
resumeCollapse();
});
// For use smartresize function is neccesary debouncer.js
// Call resumeCollapse() when window is resized.
$(window).smartresize(function(){
resumeCollapse();
});
});
</script>
</body>
</html>