-
Notifications
You must be signed in to change notification settings - Fork 1
/
Clooney.html
161 lines (152 loc) · 5.59 KB
/
Clooney.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JoyWillJazz++</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/foundation.min.css"
integrity="sha256-ogmFxjqiTMnZhxCqVmcqTvjfe1Y/ec4WaRj/aQPvn+I="
crossorigin="anonymous"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body id="body-2">
<header>
<div class="top-bar">
<div class="top-bar-left">
<span class="Joy">Joy</span> <span class="Will">Will </span>
<span class="Jazz">Jazz</span> <span class="plus">➕➕</span>
</div>
<ul class="dropdown menu" data-dropdown-menu>
<li class="has-submenu">
<a href="#0">Choose a Scan Face App</a>
<ul class="submenu menu vertical" data-submenu>
<li><a href="./index.html">Scan Your Face-alizer</a></li>
<li><a href="./Clooney.html">How Clooney Are You?</a></li>
<li><a href="./merge.html">Im-merge-ination</a></li>
</ul>
</li>
</ul>
<div class="top-bar-right">
The World's Most Interesting Face Analyzing App
</div>
</div>
</header>
<div class="card" id="clooney-card">
<div class="card-section">
<h1>How George Clooney Are You?</h1>
<p>
A face analyzing app that will scan your picture and show how close
you match up to George Clooney.
</p>
</div>
</div>
<div class="row">
<div class="columns">
<ul class="accordion" data-accordion>
<li class="accordion-item is-active" data-accordion-item>
<a href="#" class="accordion-title"
>Directions for using JoyWillJazz++</a
>
<div class="accordion-content" data-tab-content>
<p>
It is so easy! Choose one of the options below as a way to
upload your photo. Our sophisticated technology will compare
your likeness to that of Mr. Clooney .
</p>
</div>
</li>
<li class="accordion-item" data-accordion-item>
<a href="#" class="accordion-title"
>Upload a file from your device</a
>
<div class="accordion-content" data-tab-content>
<form>
<div class="grid-container">
<div class="grid-x grid-padding-x">
<div class="medium-6 cell">
<label>Upload A File Below!</label>
<input
type="file"
id="fileIMG"
accept="image/png, image/jpeg"
placeholder="Upload your img here!"
/>
<a
class="button radius bordered shadow primary"
id="fileSubmit"
>Submit</a
>
</div>
</div>
</div>
</form>
</div>
</li>
<li class="accordion-item" data-accordion-item>
<a href="#" class="accordion-title"
>Paste a link from the internet</a
>
<div class="accordion-content" data-tab-content>
<form>
<div class="medium-6 cell">
<label
>Paste Your Link Below
<input type="text" id="imgURL" />
<a href="#" class="button primary" id="submitButton"
>Submit</a
>
</label>
</div>
</form>
</div>
</li>
</ul>
</div>
</div>
<div class="card">
<div class="card-section">
<div class="grid-container">
<div id="clooneyMessage"></div>
<div class="cell medium-12 error"></div>
<div class="grid-x grid-margin-x align-center">
<!-- Image is blank because this is where the uploaded image will appear / Alt ID is blank because it is decoration until user uploads the picture -->
<div id="imgOne"></div>
<div id="imgTwo">
<img
src="https://i.pinimg.com/originals/d1/88/98/d18898c13240578f2d6aaf8c909234bb.jpg"
id="preview2"
alt="George Clooney making a funny face"
/>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="mobile-bottom-bar">
<span class="footer-text center">JoyWillJazz++</span>
<a
href="https://unsplash.com/photos/7j5Uf8KnwlI?utm_source=unsplash&utm_medium=referral&utm_content=creditShareLink"
class="footer-link"
>
<span class="footer-text">Background Photo by Harry Dona </span>
</a>
</footer>
<!-- Script Below this line -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/foundation.min.js"
integrity="sha256-pRF3zifJRA9jXGv++b06qwtSqX1byFQOLjqa2PTEb2o="
crossorigin="anonymous"
></script>
<script src="./assets/js/Clooney.js"></script>
</body>
</html>