-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMotionDesign.html
86 lines (70 loc) · 3.12 KB
/
MotionDesign.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
<!DOCTYPE html>
<html lang="en">
<head>
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
<title>Jose Zhang</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="src/bootstrap.min.css">
<link rel="stylesheet" href="src/index.css">
<script src="src/jquery.js"></script>
<script src="src/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-sm-4" >
<div class="sticky" >
<div class="nav-title">Jose Zhang</div>
<div class="nav-title-cn">张何辛</div>
<img class="profile" src="img/Profile.png" ></img>
<div class="nav-subtitle">Digital Media <br> Designer & Enthusiast</div>
<svg height="14px" width="500">
<line x1="0" y1="0" x2="200" y2="0" style="stroke:#CAC2B4;stroke-width:0.9;" />
</svg>
<ul style="list-style-type:none">
<a href="DataVisualization.html"><li >Data Visualization</li></a>
<a href="InteractionDesign.html"><li>Interaction Design</li></a>
<a href="SpeculativeDesign.html"><li>Speculative Design</li></a>
<a href="MotionDesign.html"><li style="color:#F5A623;">Motion Design</li></a>
<a href="UserResearch.html"><li>User Research</li></a>
<a href="GraphicDesign.html"><li>Graphic Design</li></a>
</ul>
<svg height="14px" width="500">
<line x1="0" y1="0" x2="200" y2="0" style="stroke:#CAC2B4;stroke-width:0.9;" />
</svg>
<ul style="list-style-type:none">
<a href="About.html"><li>About</li></a>
</ul>
</div>
</div>
<div class="col-sm-8">
<div class="content">
<a href="ContentPage/MotionDesign/Cityrama.html"><img src="img/MotionDesign/Cover/Cityrama.png"></img></a>
<div class="cover-title">Cityrama</div>
<div class="cover-subtitle">Panorama, Experiment Film<br> School Project <br> 2017.5</div>
<a href="ContentPage/MotionDesign/Karate.html"><img src="img/MotionDesign/Cover/Karate.png"></img></a>
<div class="cover-title">Karate</div>
<div class="cover-subtitle">Stop Motion<br> School Project <br> 2017.12</div>
<a href="ContentPage/MotionDesign/2017.html"><img src="img/MotionDesign/Cover/2017.png"></img></a>
<div class="cover-title">同济大学设计创意学院2017级本科生科普动画</div>
<div class="cover-subtitle">2D Motion Graphics<br> Personal Project <br> 2017.9</div>
<a href="ContentPage/MotionDesign/Templeofheaven.html"><img src="img/MotionDesign/Cover/Templeofheaven.png"></img></a>
<div class="cover-title">Temple of Heaven</div>
<div class="cover-subtitle">3D Motion Graphics<br> School Project <br> 2017.5</div>
<a href="ContentPage/MotionDesign/Balstool.html"><img src="img/MotionDesign/Cover/Balstool.png"></img></a>
<div class="cover-title">Balstool</div>
<div class="cover-subtitle">3D Motion Graphics<br> Personal Project <br> 2017.5</div>
</div>
</div>
</div>
</div>
<script>
$(".nav-title").hover(function(){
$(".profile").css("display", "block");
}, function(){
$(".profile").css("display", "none");
});
</script>
</body>
</html>