-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
289 lines (269 loc) · 22.3 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
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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Assignment 3 - Collaborative Problem-based Learning Environment</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<!-- Custom styles for this template -->
<link rel="stylesheet" href="css/styles.css" type="text/css">
<!-- FontAwesome script-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css"
integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
</head>
<body>
<div class="container">
<div class="row">
<!-- Navigation -->
<nav class="navbar side-pane navbar-dark col-2">
<div class="home-button">
<a href="#">
<img src="img/Rutherford3_03.png" alt="Rutherford College" class="logo-img">
</a>
</div>
<div class="left-pane action-area"><h5>My Posts</h5>
<button class="btn post-card draft-card" onclick="displayModal()">Draft 1 - 14 May 2018, 18:32</button>
<div class="action-pane invisible" id="PersonMenu">
<img src="img/group/Person1.jpg" class="rounded-circle" alt="Profile">
<div class="exit-button"><a href="#" onclick="closePMenu()"><span class="far fa-times-circle"></span></a></div>
<div class="menuButtonContainer"><a href="#" onclick="startPChat('Person1')">
<span class="fas fa-comment menuButton" id="chatButton"></span></a></div>
<div class="menuButtonContainer"><a href="#" onclick="startVid()">
<span class="fas fa-video menuButton" id="vidButton"></span></a></div>
<div class="menuButtonContainer"><a href="#" onclick="openDocPane('Person1')">
<span class="fas fa-file-alt menuButton" id="docButton"></span></a></div>
<p class="online-message"></p>
<div class="action-pane invisible" id="privChat">
<div><h5>Group member's private chat</h5></div>
<div class="exit-button"><a href="#" onclick="closePChat()"><span class="far fa-times-circle"></span></a></div>
<div id="priv-chat-feed">
<div id="priv-chat-feed-inner"></div>
</div>
<div id="priv-chat-box">
<textarea class="form-control" placeholder="Private message" rows="1"></textarea>
<button class="btn btn-secondary" type="button">Send message</button>
</div>
</div>
<div class="action-pane invisible" id="vidChat">
<img src="img/group/Person1.jpg" class="rounded-circle" alt="Profile">
<div class="overlay"><p>Video chat in progress</p>
<div class="exit-button"><a href="#" onclick="endVid()"><span class="far fa-times-circle"></span></a></div>
<div class="menuButtonContainer" id="endVidContainer"><a href="#" onclick="endVid()">
<span class="fas fa-video-slash menuButton" id="vidButton"></span></a></div></div></div>
<div class="action-pane invisible" id="docPane"><h5 class="post-message"></h5><div id="docPaneContainer"></div>
<div class="exit-button"><a href="#" onclick="closeDocPane()"><span class="far fa-times-circle"></span></a></div>
</div>
</div>
</div>
<div class="left-pane heads-pane">
<div class="heads" id="Person0"><a href="#" onclick="changeMenu('Person0')"><span class="tooltiptext">
Me</span><img src="img/group/Person0.jpg" alt="Student1" class="online"></a></div>
<div class="heads" id="Person1"><a href="#" onclick="changeMenu('Person1')"><span class="tooltiptext">
Mr. Miyagi</span><img src="img/group/Person1.jpg" alt="Tutor" class="online"></a>
<span class="fas fa-comment chatAlert"></span></div>
<div class="heads" id="Person2"><a href="#" onclick="changeMenu('Person2')"><span class="tooltiptext">
Sam</span><img src="img/group/Person2.jpg" alt="Student2" class="submitted new-submitted"></a>
<span class="fas fa-file-alt docAlert"></span></div>
<div class="heads" id="Person3"><a href="#" onclick="changeMenu('Person3')"><span class="tooltiptext">
Roger</span><img src="img/group/Person3.jpg" alt="Student3"></a></div>
<div class="heads" id="Person4"><a href="#" onclick="changeMenu('Person4')"><span class="tooltiptext">
Aditi</span><img src="img/group/Person4.jpg" alt="Student4"></a>
<span class="fas fa-comment chatAlert"></span></div>
<div class="heads" id="Person5"><a href="#" onclick="changeMenu('Person5')"><span class="tooltiptext">
Alice</span><img src="img/group/Person5.jpg" alt="Student5" class="online submitted new-submitted"></a>
<span class="fas fa-comment chatAlert"></span>
<span class="fas fa-file-alt docAlert"></span></div>
<div class="heads" id="Person6"><a href="#" onclick="changeMenu('Person6')"><span class="tooltiptext">
Bort</span><img src="img/group/Person6.jpg" alt="Student6" class="online"></a></div>
<div class="heads" id="Person7"><a href="#" onclick="changeMenu('Person7')"><span class="tooltiptext">
Stefan</span><img src="img/group/Person7.jpg" alt="Student7"></a></div>
</div>
</nav>
<!-- Page Content -->
<div class="col-8 text-center bg-white">
<h1 class="mt-5">Assignment 1 - Surrealism</h1>
<div id="problem-set-img-area">
<div class="problem-tiled-container">
<div class="problem-set-img-tiled" id="Dali0"><img src="img/a1/Dali0.jpg"><p class="img-title">The Persistence of Memory, 1931<br>by Salvador Dali</p></div>
<div class="problem-set-img-tiled" id="Dali1"><img src="img/a1/Dali1.jpg"><p class="img-title">Le Sommeil (Sleep), 1937<br>by Salvador Dali</p></div>
<div class="problem-set-img-tiled" id="Dali2"><img src="img/a1/Dali2.jpg"><p class="img-title">Lobster Telephone, 1938<br>by Salvador Dali</p></div>
</div>
</div>
<p class="problem">Salvador Dali once said, <strong>“Surrealism is destructive, but it destroys only what it considers to be shackles limiting our vision.”</strong> What do you think Dali meant by surrealism being “destructive”? Refer to the art works here and discuss how they are destructive. You can also refer to other surrealist art works by Dali, other artists, or other art works of different genres.</p>
<p>(Word limit: 500 words)</p>
<button class="btn btn-secondary main-edit" type="button" onclick="displayModal()">Edit latest draft</button>
<!-- SOURCE: https://www.w3schools.com/howto/howto_css_modals.asp -->
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<div class="condensed-problem">
<div class="img-pane-container">
<div class="cyclebutton leftbutton"><a href="#" onclick="plusDivs(-1)"><span class="fas fa-caret-left"></span></a></div>
<div class="img-container"><div class="img-wrapper">
<img src="img/a1/Dali0.jpg" class="mySlides" title="The Persistence of Memory, 1931">
<img src="img/a1/Dali1.jpg" class="mySlides" title="Le Sommeil (Sleep), 1937">
<img src="img/a1/Dali2.jpg" class="mySlides" title="Lobster Telephone, 1938">
</div></div>
<div class="cyclebutton rightbutton"><a href="#" onclick="plusDivs(1)"><span class="fas fa-caret-right"></span></a></div>
<p class="edit-img-title">The Persistence of Memory, 1931 by Salvador Dali</p>
</div>
<p><strong>Assignment 1 - </strong>Salvador Dali once said, <strong>“Surrealism is destructive, but it destroys only what it considers to be shackles limiting our vision.”</strong> What do you think Dali meant by surrealism being “destructive”? Refer to the art works here and discuss how they are destructive. You can also refer to other surrealist art works by Dali, other artists, or other art works of different genres. (Word limit: 400 words)</p>
</div>
<div class="exit-button"><a href="#" onclick="closeModal()"><span class="far fa-times-circle"></span></a></div>
<div class="edit-area">
<div class="text-editor">
<img src="img/text-editor.png">
<textarea class="form-control" rows="17"></textarea>
</div>
</div>
<div class="edit-button-area">
<button class="btn btn-secondary modal-edit" type="button" onclick="confirmPost()" id="post">Save & post</button>
<button class="btn btn-secondary modal-edit" type="button" onclick="closeModal()">Save & close</button>
<button class="btn btn-secondary modal-edit" type="button" onclick="confirmDiscard()">Discard changes</button>
</div>
</div>
</div>
<div id="confirm-post-modal" class="modal">
<div class="modal-popup">
<div class="popup-wrapper">
<h4>Are you sure you want to post? Your post will be visible to the group.</h4>
<button class="btn btn-secondary modal-edit" type="button" onclick="post()" id="post">Confirm post</button>
<button class="btn btn-secondary modal-edit" type="button" onclick="closePopup()">Cancel</button>
</div>
</div>
</div>
<div id="confirm-discard-modal" class="modal">
<div class="modal-popup">
<div class="popup-wrapper">
<h4>Are you sure you want to discard? Your changes will be lost.</h4>
<button class="btn btn-secondary modal-edit" type="button" onclick="closeModal()">Confirm discard</button>
<button class="btn btn-secondary modal-edit" type="button" onclick="closePopup()">Cancel</button>
</div>
</div>
</div>
<!-- Connie's submission -->
<div id="connie-modal" class="modal">
<div class="modal-content">
<div>
<div class="exit-button"><a href="#" onclick="closeModal()"><span class="far fa-times-circle"></span></a></div>
<div class="post-wrapper">
<h2>Destructive Surrealism</h2>
<h4>by Connie Li</h4>
<p>In the context of traditional art, surrealism is destructive because it goes against the traditional ideas of realism. The two paintings below shows the contrast.</p>
<div><img src="img/a1/Dali0.jpg"><img src="img/Jules_Breton.jpg"></div>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec nisi leo, rhoncus aliquam porttitor ut, finibus id purus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Duis a ligula vel sapien dignissim fermentum. Curabitur sit amet odio condimentum, blandit sem non, cursus odio. Phasellus pharetra convallis diam, ultrices vulputate tortor. Sed posuere libero sit amet fringilla fringilla.</p>
<div class="floated"><img src="img/a1/Dali1.jpg"></div>
<p>Praesent porttitor eu est vitae lacinia. Donec posuere, urna ut convallis pretium, dolor arcu imperdiet augue, at eleifend sapien lectus ut ex. Suspendisse diam ipsum, dictum in ultricies vitae, molestie quis augue. Ut et enim ut metus tempor scelerisque at ac diam. Pellentesque varius felis urna, ut commodo urna hendrerit a. Sed eleifend convallis interdum. Aenean tincidunt eu lacus eu lacinia. In a dui ut risus pulvinar efficitur.</p>
</div>
<div class="feedback-bar"></div>
</div>
</div>
</div>
<!--Sam's submission-->
<div id="sam-modal" class="modal">
<div class="modal-content">
<div>
<div class="exit-button"><a href="#" onclick="closeModal()"><span class="far fa-times-circle"></span></a></div>
<div class="post-wrapper">
<h2>Surreal Thought and Vision</h2>
<h4>by Sam Fletcher-Walker</h4>
<div class="floated"><img src="img/a1/Dali0.jpg"></div>
<p>Surrealism is the exploration of the unconscious mind, often resulting in dreamlike images and ideas. In this way, it can be thought of as destructive because it breaks down the boundaries of what we typically see and think in the real world. For example, consider "The Persistence of Time" by Salvador Dali, where the main subjects of the scene are warped, melting clocks. This goes against our notion of a typical landscape and even our normal understanding of time.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec nisi leo, rhoncus aliquam porttitor ut, finibus id purus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Duis a ligula vel sapien dignissim fermentum. Curabitur sit amet odio condimentum, blandit sem non, cursus odio. Phasellus pharetra convallis diam, ultrices vulputate tortor. Sed posuere libero sit amet fringilla fringilla.</p>
<div class="floated-left"><img src="img/a1/Dali1.jpg"></div>
<p>Praesent porttitor eu est vitae lacinia. Donec posuere, urna ut convallis pretium, dolor arcu imperdiet augue, at eleifend sapien lectus ut ex. Suspendisse diam ipsum, dictum in ultricies vitae, molestie quis augue. Ut et enim ut metus tempor scelerisque at ac diam. Pellentesque varius felis urna, ut commodo urna hendrerit a.</p>
</div>
<div class="feedback-bar"></div>
<div class="flag-wrapper flag1">
<div class="flag-box-container">
<div class="flag-box-buffer-right"></div>
<div class="flag-box"><strong>[Alice:] </strong>How does this relate to art history?</div>
<div class="flag-box-buffer-left"></div>
</div>
<div class="flag-line flag-line1"></div>
</div>
<div class="flag-wrapper flag2">
<div class="flag-box-container">
<div class="flag-box-buffer-right"></div>
<div class="flag-box"><strong>[Alice:] </strong>You didn't discuss the Lobster Telephone...</div>
<div class="flag-box-buffer-left"></div>
</div>
<div class="flag-line flag-line2"></div>
</div>
</div>
</div>
</div>
<!--Alice's submission-->
<div id="alice-modal" class="modal">
<div class="modal-content">
<div>
<div class="exit-button"><a href="#" onclick="closeModal()"><span class="far fa-times-circle"></span></a></div>
<div class="post-wrapper">
<h2>Destroying barriers of the mind</h2>
<h4>by Alice Hart</h4>
<div class="floated-left"><img src="img/a1/Dali0.jpg"></div>
<p>Surrealism was a movement which changed the ideas of artists at the time, by challenging traditional ideas of art, creativity and aesthetics. In this way it was reductive and destructive to the previous norms and ideas of art. Salvador Dali's famous quote takes us a step further by pushing us to consider this destruction by challenging the barriers to our vision, that is on our personal view of the world itself.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec nisi leo, rhoncus aliquam porttitor ut, finibus id purus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Duis a ligula vel sapien dignissim fermentum. Curabitur sit amet odio condimentum, blandit sem non, cursus odio. Phasellus pharetra convallis diam, ultrices vulputate tortor. Sed posuere libero sit amet fringilla fringilla.</p>
<div class="floated"><img src="img/a1/Dali1.jpg"></div>
<p>Praesent porttitor eu est vitae lacinia. Donec posuere, urna ut convallis pretium, dolor arcu imperdiet augue, at eleifend sapien lectus ut ex. Suspendisse diam ipsum, dictum in ultricies vitae, molestie quis augue. Ut et enim ut metus tempor scelerisque at ac diam. Pellentesque varius felis urna, ut commodo urna hendrerit a. Sed eleifend convallis interdum. Aenean tincidunt eu lacus eu lacinia. In a dui ut risus pulvinar efficitur.</p>
<div class="floated-left"><img src="img/a1/Dali2.jpg"></div>
<p>Duis sed urna sed erat semper tristique. Mauris ornare cursus tristique. Vestibulum eu condimentum metus. Nam aliquet in urna eu congue. Aliquam et posuere mi. In tortor nisl, molestie ac quam sit amet, eleifend semper quam. Maecenas neque est, dignissim ac ex nec, feugiat fermentum purus. Ut pulvinar interdum sem, a aliquam erat posuere et. Quisque id suscipit purus. Donec ligula eros, sodales vel condimentum vitae, faucibus vitae nibh. Curabitur eu erat sem.</p>
</div>
<div class="feedback-bar"></div>
</div>
</div>
</div>
<!-- Problem image set modals -->
<div id="img0-modal" class="modal">
<div class="modal-content">
<div class="exit-button"><a href="#" onclick="closeModal()"><span class="far fa-times-circle"></span></a></div>
<div class="post-wrapper">
<h2>Surreal Thought and Vision</h2>
<h4>by Sam Fletcher-Walker</h4>
<div class="floated"><img src="img/a1/Dali0.jpg"></div>
<p>Surrealism is the exploration of the unconscious mind, often resulting in dreamlike images and ideas. In this way, it can be thought of as destructive because it breaks down the boundaries of what we typically see and think in the real world. For example, consider "The Persistence of Time" by Salvador Dali, where the main subjects of the scene are warped, melting clocks. This goes against our notion of a typical landscape and even our normal understanding of time.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec nisi leo, rhoncus aliquam porttitor ut, finibus id purus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Duis a ligula vel sapien dignissim fermentum. Curabitur sit amet odio condimentum, blandit sem non, cursus odio. Phasellus pharetra convallis diam, ultrices vulputate tortor. Sed posuere libero sit amet fringilla fringilla.</p>
<div class="floated-left"><img src="img/a1/Dali1.jpg"></div>
<p>Praesent porttitor eu est vitae lacinia. Donec posuere, urna ut convallis pretium, dolor arcu imperdiet augue, at eleifend sapien lectus ut ex. Suspendisse diam ipsum, dictum in ultricies vitae, molestie quis augue. Ut et enim ut metus tempor scelerisque at ac diam. Pellentesque varius felis urna, ut commodo urna hendrerit a. Sed eleifend convallis interdum. Aenean tincidunt eu lacus eu lacinia. In a dui ut risus pulvinar efficitur.</p>
</div>
<div class="feedback-wrapper"></div>
</div>
</div>
<!--END SOURCE-->
</div>
<!-- Public Chat Feed -->
<div class="side-pane col-2">
<a href="#"><div class="system-button left-system-button"><span class="fas fa-book"></span><br>My subjects</div></a>
<a href="#"><div class="system-button"><span class="fas fa-user-times"></span><br>Sign out</div></a>
<div class="chat-feed">
<div class="chat-heading"><h4 class="text-light">Live Feed</h4></div>
<div class="right-pane rounded-top">
<!-- Dummy input for chat feed -->
<p class="timestamp">14 May 2018, 16:03</p>
<p class="tutor"><strong>[Mr Miyagi:]</strong> Assignment 1 about surrealism is up! Please post your own answer then check your group's work!</p>
<p class="roger"><strong>[Roger:]</strong> ok</p>
<button class="btn post-card" onclick="changeMenu('Person2');openDocPane('Person2');displaySam()">Sam posted a solution. Click to view.</button>
<p class="alice"><strong>[Alice:]</strong> Mr Miyagi, can we use Wikipedia in our answer?</p>
<p class="tutor"><strong>[Mr Miyagi:]</strong> Alice, you can use it but for any source, don't just copy information. Make sure you reword the meaning in your own words.</p>
<button class="btn post-card" onclick="changeMenu('Person5');openDocPane('Person5');displayAlice()">Alice posted a solution. Click to view.</button>
<button class="btn post-card" onclick="changeMenu('Person2');openDocPane('Person2');displaySam()">Sam received feedback from Alice. Click to view.</button>
</div>
</div>
<div class="chat-box">
<textarea class="form-control" placeholder="Public message" rows="2"></textarea>
<button class="btn btn-secondary" type="button">Send message</button>
</div>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Custom JavaScript -->
<script src="vendor/script.js"></script>
</body>
</html>