-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathcircles.html
More file actions
33 lines (30 loc) · 752 Bytes
/
circles.html
File metadata and controls
33 lines (30 loc) · 752 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>ШРИ 2014 ЕКБ — D3.js</title>
<script type="text/javascript" src="http://yastatic.net/d3/3.4.5/d3.js"></script>
<!-- http://www.trevorbedford.com/archive/may_07_2012.html -->
<style type='text/css'>
.chart {
background: #fff;
position: relative;
}
.chart svg {
position: relative;
width: 100%;
height: 100%;
}
.chart circle {
}
html, body, #circles, svg {
width: 100%;
height: 100%;
padding: 0pt;
margin: 0pt;
font-size: 0pt;
}
</style>
</head>
<body><div id="circles"><svg></svg></div><script type="text/javascript" src="circles.js"></script></body>
</html>