-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreq.html
116 lines (111 loc) · 3.48 KB
/
req.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Requirements page</title>
<link rel="stylesheet" href="dist/css/reqStyle.css" />
</head>
<body>
<h1>CMP204 Requirements Page - Unit 1 Assessment</h1>
<p>If you have not met a requirement, do not delete it from the table.</p>
<table>
<tr>
<th class="reqCol">Requirement</th>
<th class="metCol">How did you meet this requirement?</th>
<th class="fileCol">File name(s), line no.</th>
</tr>
<tr>
<td>HTML, CSS, JavaScript has been contained within separate files</td>
<td>
My HTML is in .html files with CSS and JS being contained in their
appropriate files in the dist folder
</td>
<td>
<ul>
<li>*.html</li>
<li>dist/css/*.css</li>
<li>dist/js/*.js</li>
</ul>
</td>
</tr>
<tr>
<td>A clear use of HTML5</td>
<td>Using HTML5 tags throughout the website</td>
<td>*.html</td>
</tr>
<tr>
<td>Use of the Bootstrap framework providing a responsive layout</td>
<td>I have used Bootstrap 4 - jumbotron, nav, BS grid</td>
<td>*.html</td>
</tr>
<tr>
<td rowspan="2">
Use of JavaScript to manipulate the DOM based on an event
</td>
<td>
When the <strong>load</strong> event takes place, the current year is
loaded into the footer for the copyright display
</td>
<td>dist/js/global.js:60 <br /></td>
</tr>
<tr>
<td>
When the <strong>mouse enters</strong> the area where band members'
bio images are on the about page, their names are shown over the top
of the photos
</td>
<td>dist/js/about.js:*</td>
</tr>
<tr>
<td>JavaScript loading of dynamically changing information</td>
<td>
Every 1000ms, JS updates the countdown clock in the header. The
interval is set at 1000ms and is initiated when the windows loads
</td>
<td>dist/js/global.js:11-53 <br /></td>
</tr>
<tr>
<td>Use of jQuery in conjunction with the DOM</td>
<td>Outputs the generated tours that are available to the window</td>
<td>dist/js/tours.js:124</td>
</tr>
<tr>
<td>Use of a jQuery plugin to enhance your application</td>
<td>
I have added Cycle2, a slideshow jquery plugin to the homepage. This
can be used to display some images for the band (currently the stock
images).
</td>
<td>index.html:77-86,167</td>
</tr>
<tr>
<td>Appropriate consideration of relevant laws</td>
<td>
Sticky Cookie Accept Banner In jQuery - cookit.js for cookie
acceptance <br />
<a
href="https://www.jqueryscript.net/other/sticky-cookie-accept-banner.html"
target="_blank"
>https://www.jqueryscript.net/other/sticky-cookie-accept-banner.html</a
>
</td>
<td>
<ul>
<li>*.html</li>
<li>dist/js/global.js:3</li>
</ul>
</td>
</tr>
</table>
<style>
.note {
font-weight: bold;
font-size: 1.2rem;
}
</style>
<p class="note">
Note from Ben: Line numbers should be correct but my formatter keeps
moving everything help
</p>
</body>
</html>