-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
214 lines (186 loc) · 7.11 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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title></title>
<style type="text/css">
table
{
border:5px solid yellow;
height: 100%;
width: 100%;
box-align: start;
}
div
{
border:0px solid blue;
height: 80%;
width: 100%;
}
.icon{
height: 100%;
width: 100%;
background-image:url(image/icon1.png);
background-size: 100% 100%;
}
.divname
{
position:relative;
}
</style>
<script type="text/javascript">
function showtable(i) {
//document.getElementById("test_area").innerHTML = "Hello World"+i;
var str="";
switch (i)
{
case 1:
document.getElementById("li_id").style.backgroundImage = "url('image/card1.png')";
document.getElementById("body_id").style.backgroundImage = "url('image/background1.jpg')";
/*
document.getElementById("icon_id").style.backgroundImage = "url('image/icon1.png')";
document.getElementById("title_id").innerHTML="Education Background";
str+="Northeastern University,</br>Boston, MA Dec 2016</br>";
str+="M.S Computer Engineering    GPA:3.92/4.0</br></br></br></br></br>";
str+="Shanghai Jiao Tong University,</br>Shanghai, China Jun 2014</br>";
str+="B.S Electrical Engineering    GPA:3.58/4.0</br>";
*/
break;
case 2:
document.getElementById("li_id").style.backgroundImage = "url('image/card2.png')";
document.getElementById("body_id").style.backgroundImage = "url('image/background2.jpg')";
/*
document.getElementById("icon_id").style.backgroundImage = "url('image/icon2.png')";
document.getElementById("title_id").innerHTML="Project Experience";
str+="Parallel Calculation</br>Use different ways to do calculation parallelism, include OpenMP, MPI, Matlab, CUDA(for gpu).</br>";
str+="Speed up SAXS(Small Angle X-RayScattering) Intensity calculation.</br>";
str+="Apply these on sobel filter, which is used in edge detection.</br>";
str+="Combine the parallel Calculation with Image processing in 3D reduection.</br>";
str+="Image Mosaicing</br>";
str+="Read two images. Apply Harris corner detect to find corner </br>";
str+="Use NNC(normalization cross correlation) fin match point.</br>";
str+="Use RANSAC(random sample consensus) pick four best points to calculation transfer matrix H. </br>";
str+="Warp one of the images and combine them together. </br>";
str+="Course registration </br>";
str+="Use php, mysql and html to simulate a course registration system.</br>";
str+=" Mysql is used for database and html is used for front page.</br>";
str+="Connect front page with database using php.</br>";
*/
break;
case 3:
document.getElementById("li_id").style.backgroundImage = "url('image/card3.png')";
document.getElementById("body_id").style.backgroundImage = "url('image/background3.jpg')";
/*
document.getElementById("icon_id").style.backgroundImage = "url('image/icon3.png')";
document.getElementById("title_id").innerHTML="Co-op Experience";
str+="Vicor Corporation, Andover, MA June 2015-Dec 2015</br>";
str+="Engineering intern.</br>";
str+="Analyze data and grab key word to make a table.</br>";
str+="Design web site and maintained database which included the data of firmware on VI chip. </br>";
str+="Program on VI chip. </br>";
str+="Vicor Corporation, Andover, MA July 2016-present</br>";
str+="Bluetooth device project. Use C# and WPF to make GUI for Bluetooth device project.</br>";
str+="Connect dongle and create communication channel between dongle and device.</br>";
str+="Check the security of whole project. Testing invalid operation. </br>";
*/
break;
case 4:
document.getElementById("li_id").style.backgroundImage = "url('image/card4.png')";
document.getElementById("body_id").style.backgroundImage = "url('image/background4.jpg')";
/*
document.getElementById("icon_id").style.backgroundImage = "url('image/icon4.png')";
document.getElementById("title_id").innerHTML="Current Course";
str+="Computer Vision</br>";
str+="High-Performance Computing</br>";
str+="Database Management System</br>";
str+="Introduction to Machine Learning and Pattern Recognition </br>";
*/
break;
case 5:
document.getElementById("li_id").style.backgroundImage = "url('image/card5.png')";
document.getElementById("body_id").style.backgroundImage = "url('image/background5.jpg')";
/*
document.getElementById("icon_id").style.backgroundImage = "url('image/icon5.png')";
document.getElementById("title_id").innerHTML="Leadership Activities";
str+="Third prize of Electronic Design (5% of all student)</br>";
str+="Vice Minister of League Committee of SEIEE</br>";
str+="Team Leader of Social Practice</br>";
*/
break;
case 6:
document.getElementById("li_id").style.backgroundImage = "url('image/card6.png')";
document.getElementById("body_id").style.backgroundImage = "url('image/background6.jpg')";
/*
document.getElementById("icon_id").style.backgroundImage = "url('image/icon6.png')";
document.getElementById("title_id").innerHTML="Skills";
str+="Computer: Java, C++, C#,PHP, JavaScript, Python, Matlab, LabView,CUDA,etc </br>";
*/
break;
}
document.getElementById("content_id").innerHTML=str;
}
</script>
<link href="css/demos.css" rel="stylesheet" />
</head>
<body id="body_id">
<h1 id="test_area"></h1>
<div>
<ul>
<li class="monolith" id="li_id">
<!--
<table >
<tr height="5%">
<td>
</td>
</tr>
<tr height="15%" >
<td width="20%">
<div class="icon" name="icon_name" id="icon_id"></div>
</td>
<td>
<div class="divname" >
<h2 name="title_name" id="title_id">
Education Background
</h2>
</div>
</td>
</tr>
<tr height="80%" >
<td colspan="2">
<div >
<h3 id="content_id">
Northeastern University,</br>Boston, MA Dec 2016</br>
M.S Computer Engineering    GPA:3.92/4.0</br></br></br></br></br>
Shanghai Jiao Tong University,</br>Shanghai, China Jun 2014</br>
B.S Electrical Engineering    GPA:3.58/4.0</br>
</h3>
</div>
</td>
</tr>
</table>
-->
</li>
<li class="mover" onclick="showtable(1)"><span_1 ></span_1><span>Education</span></li>
<li class="mover" onclick="showtable(2)"><span_2></span_2><span>Project</span></li>
<li class="mover" onclick="showtable(3)"><span_3></span_3><span>Co-op</span></li>
<li class="mover" onclick="showtable(4)"><span_4></span_4><span>Course</span></li>
<li class="mover" onclick="showtable(5)"><span_5></span_5><span>Activities</span></li>
<li class="mover" onclick="showtable(6)"><span_6></span_6><span>Skills</span></li>
</ul>
</div>
<script src="js/jquery.js"></script>
<script src="js/jquery.roundabout2.js"></script>
<script>
$(document).ready(function() {
$('ul').roundabout({
minZ: 100,
maxZ: 300,
minOpacity: 1,
minScale: 0.6,
childSelector: '.mover',
tilt: -4
});
});
</script>
</body>
</html>