-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (105 loc) · 3.62 KB
/
index.html
File metadata and controls
121 lines (105 loc) · 3.62 KB
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
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset="utf-8">
<style>
html {
margin-left: 15%;
margin-right: 15%;
background-color: rgb(245, 234, 219);
}
#datavis {
text-align: center;
}
.links line {
stroke: #999;
stroke-opacity: 0.6;
}
.nodes circle {
stroke: #fff;
stroke-width: 1.5px;
}
text {
font-family: sans-serif;
font-size: 10px;
}
#border {
border: 1px solid black;
}
h1 {
text-align: center;
}
#menus {
text-align: center;
padding-bottom: 15px;
}
#title {
padding-top: 15px;
padding-bottom: 20px;
text-align: center;
/* background-color: #FFB81C; */
}
#alertDiv {
position: absolute;
top: 50%;
left: 15%;
text-align: center;
z-index:2;
background-color: white;
border: 2px solid black;
margin-left: 15px;
padding: 15px;
margin-top: -100px;
margin-left: -200px;
}
p {
font-size: 18pt;
}
</style>
<div id="title">
<img src="resources/myCourseBuilder.png" width=480px height=480px style="display:inline-block;">
</div>
<script src="https://d3js.org/d3.v4.min.js"></script>
</head>
<body=>
<br>
<div id="menus">
<select id="term-select">
<option>Fall</option>
<option selected>Spring</option>
</select>
<select id="code-select">
<option selected>CS</option>
</select>
<button id="apply">APPLY</button>
<script src="js/fillselect.js"></script>
</div>
<div id="datavis">
<svg id="border" width="992" height="800" style="background-color: #FFFFFF"></svg>
<script src="js/graphvis.js"></script>
</div>
<div id="desc" style="background-color: #FFB81C;">
<p>
How to use the myCourseBuilder model:
<ul>
<li>
Select your relevant department code and semester (spring or fall) from the above drop-downs and hit the submit button. From here, myCourseBuilder will generate all courses offered under that department for the given term and place them in a graph, to
be displayed in the box above.
</li>
<li>
Click and drag class "nodes" around the diagram in order to make it more clear and apparent what courses are connected and how exactly they are.
</li>
<li>
Click and drag on the box to get a better view of all the courses being offered in the given semester! You can also zoom in to see a more clear picture of which courses are prerequisites for others.
</li>
<li>
Double click on a course in order to mark it as "completed." As a result of this "completion," other nodes will become colored light green, indicating you should now be capable of completing them too during the given semester.
</li>
<li>
Right click on a course in order to read more information on what exactly the course entails. A number certainly won't tell you the whole story when it comes to what a course has to offer!
</li>
</ul>
</p>
</div>
</body>
</html>