-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
51 lines (45 loc) · 1.33 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="button2.css">
<link rel="stylesheet" type="text/css" href="popup.css">
<!-- loading frontend-->
<link href='https://fonts.googleapis.com/css?family=Roboto:400,300' rel='stylesheet' type='text/css'> <!-- loading frontend-->
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="https://sdk.clarifai.com/js/clarifai-latest.js"></script>
<style>
p, img {
margin: 5px;
width: 407px;
}
p.error {
padding-top: 10px;
}
img {
background-color: #ea1010;
margin: 5px;
width: 407px;
cursor: pointer;
}
img:hover {
box-shadow: 0px 0px 15px 5px rgba(255,255,255);
}
</style>
<script src="popup.js"></script>
</head>
<body>
<!--loading icon frontend-->
<button class="button-three" style="position: relative;left: 5px; top: 10px">Predict</button>
<div class="load-wrapp" id = "loading" alt = "loading" style="position: relative; left: 1.5in; top: 12px; display:none" >
<div class="load-wrapp" style="position: relative; left: -25px; top: -5px;">
<div class="load-1">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
</div>
</div>
<!--loading icon frontend-->
</body>
</html>