forked from mrpandey/d3graphTheory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
unit.html
167 lines (139 loc) · 7.57 KB
/
unit.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-116288086-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-116288086-2');
</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Graph Theory tutorials. Interactive, visual, concise and fun. Learn more in less time.">
<meta name="author" content="Avinash Pandey">
<title>D3 Graph Theory</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Use this local copy in case of any trouble with cdn
<link href="css/bootstrap.min.css" rel="stylesheet"-->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<!-- Overlay -->
<div id="lightbox" class="hidden">
<div id="map-overlay">
<div id="map-header">
<button type="button" id="map-close" class="close" aria-label="Close">
<span aria-hidden="true" class="glyphicon glyphicon-remove-circle"></span>
</button>
<h2>Contents</h2>
<hr class="under-title">
</div>
<div id="map-list">
<ol>
</ol>
</div>
</div>
</div>
<!-- Navigation -->
<nav class="navbar navbar-default navbar-static-top" role="navigation">
<div class="container">
<a class="navbar-brand" href="index.html">D3 Graph Theory</a>
<ul class="nav navbar-nav">
<li id="map-open"><a href="javascript:void(0)">Map</a></li>
<li><a href="https://github.com/mrpandey/d3graphTheory" target="_blank">GitHub <span class="glyphicon glyphicon-new-window"></span></a></li>
</ul>
</div>
</nav>
<div class="container-fluid" id="status-container">
<div class="text-center">
<h1>Loading...</h1>
</div>
</div>
<!-- App Content -->
<div id="app-container" class="container hidden">
<div class="row">
<div id="theory-area" class="col-md-4 col-sm-12">
<h2 id="content-title" class="text-center"></h2>
<hr class="under-title">
<div id="theory-content">
</div>
<div id="app-interface">
<div id="interface-title">
<h4></h4>
</div>
<div id="interface-content">
</div>
</div>
</div>
<div id="app-area" class="col-md-8 col-sm-12">
<div id="svg-buttons" class="text-center">
</div>
<div id="svg-wrap">
</div>
<div id="svg-output">
</div>
</div>
</div>
<!-- /.row -->
<div class="row" id="below-app">
<div class="col-md-2 col-sm-3 col-xs-3 text-left prev-wrap">
<a href="" class="map-flow prev"><span class="glyphicon glyphicon-menu-left"></span> Prev</a>
</div>
<div class="col-md-6 col-md-offset-1 col-sm-6 col-xs-6">
</div>
<div class="col-md-2 col-md-offset-1 col-sm-3 col-xs-3 text-right next-wrap">
<a href="" class="map-flow next">Next <span class="glyphicon glyphicon-menu-right"></span></a>
</div>
</div>
</div>
<!-- /.container -->
<footer id="myFooter">
<div class="second-bar">
<div class="container">
<div class="row">
<div class="col-md-4">
<span class="logo"><a href="index.html">D3 Graph Theory</a></span>
</div>
<div class="col-md-4 text-center">
<span><a href="http://mrpandey.com/" target="_blank" style="color:#edde45;">My Website</a> |</span>
<span><a href="https://donorbox.org/d3graphtheory" target="_blank" style="color:#fd971f;">Donate</a> |</span>
<span><a href="https://github.com/mrpandey" target="_blank" style="color:#a6e22a;">My GitHub</a></span>
</div>
<div class="col-md-4 social-icons text-right">
<ul class="share-buttons">
<li><a href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fmrpandey.github.io%2Fd3graphTheory%2F"e=D3%20Graph%20Theory" title="Share on Facebook" target="_blank"><img alt="Share on Facebook" src="img/icons/social-inverted/facebook.png" /></a></li>
<li><a href="https://twitter.com/intent/tweet?source=https%3A%2F%2Fmrpandey.github.io%2Fd3graphTheory%2F&text=D3%20Graph%20Theory:%20https%3A%2F%2Fmrpandey.github.io%2Fd3graphTheory%2F&via=mrpandey360" target="_blank" title="Tweet"><img alt="Tweet" src="img/icons/social-inverted/twitter.png" /></a></li>
<li><a href="https://plus.google.com/share?url=https%3A%2F%2Fmrpandey.github.io%2Fd3graphTheory%2F" target="_blank" title="Share on Google+"><img alt="Share on Google+" src="img/icons/social-inverted/googleplus.png" /></a></li>
<li><a href="http://pinterest.com/pin/create/button/?url=https%3A%2F%2Fmrpandey.github.io%2Fd3graphTheory%2F&description=d3graphTheory%20is%20an%20interactive%20tool%20to%20learn%20graph%20theory%20in%20a%20fun%20way." target="_blank" title="Pin it"><img alt="Pin it" src="img/icons/social-inverted/pinterest.png" /></a></li>
<li><a href="http://www.reddit.com/submit?url=https%3A%2F%2Fmrpandey.github.io%2Fd3graphTheory%2F&title=D3%20Graph%20Theory" target="_blank" title="Submit to Reddit"><img alt="Submit to Reddit" src="img/icons/social-inverted/reddit.png" /></a></li>
</ul>
</div>
</div>
</div>
</div>
</footer>
<script type="text/javascript">
//to set svg dimensions throughout the app
var univSvgWidth;
var univSvgHeight;
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<!-- Use this local copy in case of any trouble with cdn
<script type="text/javascript" src="js/jquery-3.2.1.min.js"></script>
-->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<!-- Use this local copy in case of any trouble with cdn
<script type="text/javascript" src="js/bootstrap.min.js"></script>
-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js" integrity="sha256-dsOXGNHAo/syFnazt+KTBsCQeRmlcW1XKL0bCK4Baec=" crossorigin="anonymous"></script>
<!-- Use this local copy in case of any trouble with cdn
<script type="text/javascript" src="js/d3.v3.min.js"></script>
-->
<script type="text/javascript" src="js/content.js"></script>
<script type="text/javascript" src="js/control.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS_HTML-full"></script>
</body>
</html>