-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
40 lines (40 loc) · 1.88 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>D3bind demo</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
</head>
<body style="margin: 0 25px">
<h1 style="font-weight: bold; margin-bottom: 35px">D3bind examples</h1>
<div style="max-width: 600px">
<h2><a href="basic_demo/index.html">Basic</a></h2>
<p>Showcase of basic functionality</p>
<hr/>
<h2>MVC</h2>
<p>Example components with Model-View-Controller separation</p>
<ul>
<li><a href="mvc/basic/index.html">Hello World</a></li>
<li><a href="mvc/todo/index.html">TODO list</a></li>
<li><a href="mvc/tabs/index.html">Tabs</a></li>
</ul>
<hr/>
<h2>d3bind alternatives of some blocks:</h2>
<p>Axes:</p>
<ul>
<li><a href="axis_example/axis_component_A.html">Axis component</a></li>
<li><a href="axis_example/axis_component_B.html">Axis component #2</a></li>
<li><a href="axis_example/custom_axis.html">Custom axis</a></li>
<li><a href="axis_example/manual_axis_interpolation.html">Manual axis interpolation</a></li>
<li><a href="axis_example/pan_zoom.html">Pan-zoom</a></li>
</ul>
<p>Update pattern:</p>
<ul>
<li><a href="update_pattern/basic.html">Repeat update</a></li>
<li><a href="update_pattern/transition_single.html">Repeat update with transition - single item</a></li>
<li><a href="update_pattern/transition_batch.html">Repeat update with transition - batch</a></li>
</ul>
</div>
</body>
</html>