-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
254 lines (219 loc) · 10.1 KB
/
about.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>von Neumann Boutique</title>
<link rel="stylesheet" href="styles/styles.css">
<link rel="stylesheet" href="styles/menu-tabs-styles.css">
<link rel="stylesheet" href="styles/about-styles.css">
</head>
<header>
<a style="text-decoration:none" href="index.html">
<h1 class="vnb">The von Neumann Boutique</h1>
</a>
</header>
<body style="background-image: url(img/background.png);">
<div class="container">
<ul class="menu-bar">
<li><i><a href="menu.html" style="text-decoration: underline;">Menu</a></i></li>
<li><i><a href="about.html" class="active">About</a></i></li>
<li><i><a href="timeline.html">Research</a></i></li>
<li><i><a href="books.html">Results</a></i></li>
<li><i><a href="contact.html">Contact</a></i></li>
</ul>
<br>
<h2>About the Boutique</h2>
<p class="about">
The von Neumann Boutique is a fictional framework that demonstrates
abstract concepts in computer science (CS)
to introduce audiences with little or no CS knowledge to fundamental
topics. We start with a story about a smart clothing retail store,
manned entirely by robots and intelligent systems. </p>
<br>
<div>
<h2 class="meet">Meet the Robots</h2>
<p class="meet">Click on the dots to view each smart technology in the boutique.</p>
<img src="img/hexagon.png" alt="Boutique floor" class="floor-backdrop"/>
<br>
<div class="floor">
<!-- First row -->
<div class="row">
<button class="dot" id="violetBtn">
<span class="tooltip">Violet</span>
</button>
<div id="violetModal" class="modal"> <!-- Violet Modal -->
<div class="modal-content">
<span class="close violetClose">×</span>
<div class="char-display">
<h2>Violet: Purifier</h2>
<img src="img/violet.png" alt="Violet" style="height: 400px;">
<p>Keeps surfaces and materials within the boutique sanitized. Purifies air. Offers guests hygenic choices.</p>
</div>
</div>
</div>
<button class="dot" id="furiesBtn">
<span class="tooltip">The Furies</span>
</button>
<div id="furiesModal" class="modal"> <!-- Furies Modal -->
<div class="modal-content">
<span class="close furiesClose">×</span>
<div class="char-display">
<h2>The Furies: Security cameras</h2>
<img src="img/furies.png" alt="The Furies" style="height: 400px">
<p>In-store security system. Named after three historical figures who monitored Ada Lovelace's movements in her youth.</p>
</div>
</div>
</div>
<button class="dot" id="turnerBtn">
<span class="tooltip">Turner</span>
</button>
<div id="turnerModal" class="modal"> <!-- Turner Modal -->
<div class="modal-content">
<span class="close turnerClose">×</span>
<div class="char-display">
<h2>Turner: Inventory control specialist</h2>
<img src="img/turner.png" alt="Turner" style="height: 400px">
<p>Keeps track of inventory. Stocks items.</p>
</div>
</div>
</div>
</div>
<!-- Second row -->
<div class="row">
<button class="dot" id="somervilleBtn">
<span class="tooltip">Mrs. Somerville & Chip</span>
</button>
<div id="somervilleModal" class="modal"> <!-- Somerville Modal -->
<div class="modal-content">
<span class="close somervilleClose">×</span>
<div class="char-display">
<h2>Mrs. Somerville: In-store customer service representative</h2>
<p>Handles customer concerns in-person. Prepares purchases before they leave the boutique.</p>
<img src="img/somerville.png" alt="Mrs. Somerville and Chip" style="height: 300px">
<h2>Chip: Online/phone customer service representative</h2>
<p>Monitors and responds to online feedback. Answers calls.</p>
</div>
</div>
</div>
<button class="dot" id="louisBtn">
<span class="tooltip">Louis</span>
</button>
<div id="louisModal" class="modal"> <!-- Louis Modal -->
<div class="modal-content">
<span class="close louisClose">×</span>
<div class="char-display">
<h2>Louis: Sales associate</h2>
<img src="img/louis3.png" alt="Louis" style="height: 400px">
<p>Acts as Maìtre d'. Greets customers at door and determines their next course of action.
Assists customers through their shopping experience as needs arise.</p>
</div>
</div>
</div>
<button class="dot" id="robertBtn">
<span class="tooltip">Robert</span>
</button>
<div id="robertModal" class="modal"> <!-- Robert Modal -->
<div class="modal-content">
<span class="close robertClose">×</span>
<div class="char-display">
<h2>Robert: Store clock & manager</h2>
<img src="img/robert.png" alt="Robert" style="height: 400px">
<p>Regulates cycles for all robots in the boutique</p>
</div>
</div>
</div>
<button class="dot" id="adaBtn">
<span class="tooltip">ADA</span>
</button>
<div id="adaModal" class="modal"> <!-- Ada Modal -->
<div class="modal-content">
<span class="close adaClose">×</span>
<div class="char-display">
<h2>ADA: Appearance & Dressing Advisor</h2>
<img src="img/ada.png" alt="ADA" style="height: 400px;">
<p>Smart mirror prototype. Uses AI to create character sketches of customers.
Recommends styles and brands. Puts together outfits with store inventory.</p>
</div>
</div>
</div>
<button class="dot" id="faiaBtn">
<span class="tooltip">Faia</span>
</button>
<div id="faiaModal" class="modal"> <!-- Faia Modal -->
<div class="modal-content">
<span class="close faiaClose">×</span>
<div class="char-display">
<h2>Faia: Retired fashion wardrobe</h2>
<img src="img/faia.png" alt="Faia" style="height: 400px">
<p>Outdated model replaced by ADA. Offered customers fashion advice using
combinations recommended by designers.</p>
</div>
</div>
</div>
</div>
<!-- Third row-->
<div class="row">
<button class="dot" id="babbageBtn">
<span class="tooltip">Babbage</span>
</button>
<div id="babbageModal" class="modal"> <!-- Babbage Modal -->
<div class="modal-content">
<span class="close babbageClose">×</span>
<div class="char-display">
<h2>Mr. Babbage: Cash register</h2>
<img src="img/babbage.png" alt="Mr. Babbage" style="height: 400px">
<p>Performs calculations and handles all payments.</p>
</div>
</div>
</div>
<button class="dot" id="gatesBtn">
<span class="tooltip">Gates</span>
</button>
<div id="gatesModal" class="modal"> <!-- Gates Modal -->
<div class="modal-content">
<span class="close gatesClose">×</span>
<div class="char-display">
<h2>William & Henry (The Gates): Entry doors & security</h2>
<img src="img/gates.png" alt="The Gates" style="height: 400px">
<p>Monitor pedestrians outside the boutique. Determine whether or not to admit customers inside.</p>
</div>
</div>
</div>
<button class="dot" id="cocoBtn">
<span class="tooltip">Coco</span>
</button>
<div id="cocoModal" class="modal"> <!-- Coco Modal -->
<div class="modal-content">
<span class="close cocoClose">×</span>
<div class="char-display">
<h2>Coco: Display & Design Manager</h2>
<img src="img/coco.png" alt="Coco" style="height: 400px">
<p>Arranges inventory artfully. Determines store arrangement to maximize customer experience.</p>
</div>
</div>
</div>
</div>
<!-- Fourth row -->
<div class="row">
<br><br>
<button class="dot" id="deliverBtn">
<span class="tooltip">DeliverBot</span>
</button>
<div id="deliverModal" class="modal"> <!-- DeliverBot Modal -->
<div class="modal-content">
<span class="close deliverClose">×</span>
<div class="char-display">
<h2>DeliverBot: Delivery robot</h2>
<img src="img/deliverbot.png" alt="DeliverBot" style="height: 400px">
<p>Delivers purchases to customers' homes within the smart city.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="js/about.js"></script>
</body>
<footer> <small>Copyright © 2020, Anneliese Brei. All rights reserved</small> </footer>
</html>