This repository has been archived by the owner on May 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmyhomepage.html
executable file
·108 lines (99 loc) · 4.86 KB
/
myhomepage.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
<!doctype html>
<meta charset="utf-8">
<html>
<head>
<title>Jingxian Zhang's Website</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./stylesheet.css">
</head>
<body>
<div class="page">
<!-- Update the section below to add your own personal information -->
<h1 class="center">Jingxian Zhang</h1>
<h4>Masters student | MIT Media Lab | Collective Learning | [email protected]</h3>
<div id="viz-container">
<div class="single_viz" id="map">
<div class="text">
My Path
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,
when an unknown printer took a galley of type and scrambled it to make
a type specimen book. </p>
</div>
<div class="chart" id="svg_map"></div>
</div>
<hr/>
<div class="single_viz" id="bubble">
<div class="text">
In My Leisure Time
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,
when an unknown printer took a galley of type and scrambled it to make
a type specimen book. </p>
<button class="button" type="button" onclick="shuffle_colors();">Shuffle the colors</button>
<br>
<div class="dropdown">
<button class="dropbtn"><span id="cat">all</span> <span style='float: right;'>▼</span></button>
<div class="dropdown-content">
<a onclick="filter('sports');">sports</a>
<a onclick="filter('arts');">arts</a>
<a onclick="filter('food');">food</a>
<a onclick="filter('all');">all</a>
</div>
</div>
</div>
<svg class="chart" id="svg_bubble"></svg>
</div>
<hr/>
<div class="single_viz" id="favorite">
<div class="text">
My Favorite ..
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,
when an unknown printer took a galley of type and scrambled it to make
a type specimen book. </p>
</div>
<div class="allFavorites">
<div class="favorites" id="favorites">
<h4> Color </h4>
<div>
<!-- Add a geometric shape and color it with your favorite color -->
</div>
</div>
<div class="favorites">
<h4> Book </h4>
<img src="images/whyInformationGrows.jpg" width="100" height= "150"/>
</div>
<div class="favorites">
<h4> Animal </h4>
<!-- Add a gif of your favorite animal -->
</div>
<div class="favorites">
<h4> Cuisine </h4>
<!-- Link the image to a website that shows a delicious recipe for a pasta dish -->
<img src="images/pasta.png" width="220" height= "150"/>
</div>
</div>
</div>
<hr/>
<!-- Add other sections if you like -->
<div class="single_viz" >
<div class="text">Put anything you'd like to share!</div>
<svg class="chart" id="chart" width="420" height="120"></svg>
</div>
</div>
</div>
<script src="http://d3plus.org/js/d3.js"></script>
<script src="http://d3plus.org/js/d3plus.js"></script>
<script src="http://d3plus.org/js/topojson.js"></script>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/queue.v1.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="./datamaps.world.min.js"></script>
<script src="http://labratrevenge.com/d3-tip/javascripts/d3.tip.v0.6.3.js"></script>
<script src="./map.js"></script>
<script src="./bubble.js"></script>
<script>
</script>
</body>
</html>