-
Notifications
You must be signed in to change notification settings - Fork 0
/
behind-the-code.html
68 lines (58 loc) · 2.58 KB
/
behind-the-code.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./styles/styles.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script>
$(function () { $("head").load("head.html") });
</script>
<title>MC 311 Tool-Behind the Code</title>
</head>
<body>
<div id="preloader">
<div id="status"> </div>
</div>
<div id="navbar"></div>
<div class="container my-3">
<h1 class="display-6">Behind the Code</h1>
</div>
<div class="container mx-5">
<div class="container mx-5">
<p class="px-5">This was my first project after learning Bootstrap 5. It served as a chance to reinforce
what I learned
about Bootstrap, as well as good practice with working with the DOM and maninpulating objects and arrays
in JaveScript.</p>
</div>
<div class="container mx-5">
<p class="px-5">The basic idea leveraged common functions, like copying data to the clipboard, updating the
users
display,
and building list. From there I built functions to generate & format the proper data and notes, and
passed
them.</p>
<img src="./assets/utilities.png" class="img-fluid rounded mx-auto d-block code-image"
alt="Utility Functions">
</div>
<div class="container mt-4 mx-5">
<p class="px-5">Some sections were fairly straight forward, simply grabbing user inputs, and forming a
string around them
</p class="px-5">
<img src="./assets/ride-on-arrival.png" class="img-fluid rounded mx-auto d-block code-image"
alt="Ride On Arrival Code">
</div>
<div class="container mt-4 mx-5">
<p class="px-5">Some required accompanying data to build the notes for the user, or provide them
information. All data
was stored in objects, some nested (like the stop ID locator.)</p>
<img src="./assets/stop-id-data.png" class="img-fluid rounded mx-auto d-block code-image"
alt="Stop ID Data">
</div>
<div class="container mt-4 mx-5">
<p class="px-5">Then the ojects were cross-referenced to output to correct data.</p>
<img src="./assets/update-stop-id.png" class="img-fluid rounded mx-auto d-block code-image"
alt="Stop ID Logic">
</div>
</div>
</body>
<script src="./scripts/scripts.js" type="module"></script>
</html>