-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
220 lines (200 loc) · 7.29 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
<!DOCTYPE html>
<html>
<script
data-ad-client="ca-pub-6078835814584861"
async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"
></script>
<head>
<meta name="naver-site-verification" content="7b333f5482d229b0131ea820726effeed045bf27" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-177454767-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-177454767-1");
</script>
<!-- Na_search meta tags -->
<meta name="title" content="인공지능 애완동물 품종 탐색기(고양이, 강아지)" />
<meta name="description" content="AI predicts the breed of that pet" />
<meta property="og:url" content="https://petbreed.ml" />
<meta property="og:type" content="website" />
<meta property="og:title" content="AI Pets' breed Searcher" />
<meta property="og:description" content="AI predicts the breed of that pet" />
<meta property="og:image" content="" />
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
<script
class="jsbin"
src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"
></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/[email protected]/dist/tf.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@teachablemachine/[email protected]/dist/teachablemachine-image.min.js"></script>
<script src="./modelData.json"></script>
<script src="./script.js"></script>
<title>AI Pets' Breed Searcher</title>
</head>
<body>
<!-- 네비게이션 바 부분 -->
<nav
class="navbar navbar-expand-lg navbar-light nav-distance"
style="display: flex; justify-content: space-around;"
>
<a class="navbar-brand" href="#">애완동물 품종 탐색 (강아지, 고양이)</a>
<a
href="https://github.com/TeamNoWon/Pet-Breed-Classification"
class="github-link"
target="_blank"
>
<img
src="img/깃허브 아이콘.png"
class="github-icon"
style="width: 10%"
/>By TeamNoWon</a
>
</nav>
<section class="title-section">
<h1 class="title">인공지능 애완동물 품종 분류기 (강아지,고양이)</h1>
<h2 class="subtitle">What is the breed of that pet?</h2>
</section>
<!-- kakao 광고 삽입부분-1 -->
<div class="ad-banner1">
<ins class="kakao_ad_area" style="display:none;"
data-ad-unit = "DAN-s4m9gxxbbdiw"
data-ad-width = "320"
data-ad-height = "100"></ins></div>
<script type="text/javascript" src="//t1.daumcdn.net/kas/static/ba.min.js" async></script>
<div class="container file-upload">
<div class="image-upload-wrap" style="width: 65%; margin: 0 auto">
<input
class="file-upload-input"
type="file"
onchange="readURL(this);"
accept="image/*"
/>
<div class="drag-text">
<img
src="img/upload.svg"
class="mt-5 pt-5 upload"
style="width: 20%"
/>
<h3 class="mb-5 pb-5 pt-4 upload-text">
동물 사진을 올려놓거나 눌러서 업로드하세요!
</h3>
</div>
</div>
<div class="file-upload-content">
<img
class="file-upload-image"
id="pet-image"
src="#"
alt="your image"
/>
<div id="label-container"></div>
<div class="loading">
<img
src="img/loading.gif"
alt="loading-image"
class="loading-image"
/>
</div>
<div class="remove-image-container">
<button type="button" onclick="removeUpload()" class="remove-image">
사진 제거
</button>
</div>
</div>
</div>
<!-- kakao 광고 삽입부분-2 -->
<div class="ad-banner2">
<ins class="kakao_ad_area" style="display:none;"
data-ad-unit = "DAN-1jydr11mhh0fa"
data-ad-width = "320"
data-ad-height = "100"></ins></div>
<script type="text/javascript" src="//t1.daumcdn.net/kas/static/ba.min.js" async></script>
<!-- kakao 광고 삽입부분-3 -->
<div class="ad-last">
<ins class="kakao_ad_area" style="display:none;"
data-ad-unit = "DAN-1jeyvv7mz04zc"
data-ad-width = "300"
data-ad-height = "250"></ins> </div>
<script type="text/javascript" src="//t1.daumcdn.net/kas/static/ba.min.js" async></script>
<div id="label-container"></div>
<!-- 댓글창 -->
<div
id="disqus_thread"
style="margin: 10%; margin-top: 0px; margin-bottom: 10px"
></div>
<script
type="text/javascript"
src="//t1.daumcdn.net/kas/static/ba.min.js"
async
></script>
<script>
/**
* RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS.
* LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables*/
/*
var disqus_config = function () {
this.page.url = PAGE_URL; // Replace PAGE_URL with your page's canonical URL variable
this.page.identifier = PAGE_IDENTIFIER; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
};
*/
(function () {
// DON'T EDIT BELOW THIS LINE
var d = document,
s = d.createElement("script");
s.src = "https://teamnowon.disqus.com/embed.js";
s.setAttribute("data-timestamp", +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript
>Please enable JavaScript to view the
<a href="https://disqus.com/?ref_noscript"
>comments powered by Disqus.</a
></noscript
>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script
src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"
integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV"
crossorigin="anonymous"
></script>
</body>
<!-- 저작권 표시 -->
<footer class="footer pt-4 container d-flex just-content-center">
<div>
<p>Copyright © by TeamNoWon 2020. All Rights Reserved.</p>
</div>
</footer>
</html>