-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (44 loc) · 1.49 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
<!DOCTYPE html>
<html>
<head>
<title>D3 101 through an Example</title>
<style>
body {
font-family: Palatino, Georgia, serif;
line-height: 150%;
background-color: #eeeeee;
}
.wrapper {
max-width: 40em;
margin: 0 auto;
padding: 1em;
background-color: white;
}
</style>
</head>
<body>
<div class=wrapper>
<p>
This 4-step example shows you how to use D3 to visualize information about
20 users from the Flickr 100M Dataset.
</p>
<p>
For all sources, see the <a href="//github.com/quyin/d3examples">GitHub repository</a>.
</p>
<ul>
<li><a href="first.html">First Step</a>, <a href="first.js">code</a></li>
<li><a href="data-binding.html">Bind with Data</a>, <a href="data-binding.js">code</a></li>
<li><a href="bubbles.html">Let's Make a Bubble Layout</a>, <a href="bubbles.js">code</a></li>
<li><a href="interactive.html">Making It Interactive!</a>, <a href="interactive.js">code</a></li>
</ul>
</div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-99944082-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>