-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
59 lines (57 loc) · 3.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>SketchyCOCO</title>
<link rel="stylesheet" type="text/css" href="https://yegor256.github.io/tacit/tacit.min.css"/>
<link rel="stylesheet" type="text/css" href="assets/css/img.css"/>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js"></script>
<script src="assets/js/getImages.js" type="text/javascript"></script>
</head>
<body>
<div class="top">
<h1 class="title">SketchyCOCO</h1>
<!-- <p>The data will be presented in pairs. A pair of the data has the same number.</p> -->
</div>
<div class="container">
<div class="middle" id="output">
<h1></h1>
</div>
<div class="left">
<div class="menu">
<ul>
<li class="item" id="profile">
<a id="first" href="#profile" class="btn"><i class="far fa-user"></i>Objects</a>
<div class="smenu">
<a id="start" href="javascript:void(0);" data="Objects" data-type="2" onclick="onClick(this)">bicycle</a>
<a href="javascript:void(0);" data="Objects" data-type="3" onclick="onClick(this)">car</a>
<a href="javascript:void(0);" data="Objects" data-type="4" onclick="onClick(this)">motorcycle</a>
<a href="javascript:void(0);" data="Objects" data-type="5" onclick="onClick(this)">airplane</a>
<a href="javascript:void(0);" data="Objects" data-type="10" onclick="onClick(this)">traffic light</a>
<a href="javascript:void(0);" data="Objects" data-type="11" onclick="onClick(this)">fire hydrant</a>
<a href="javascript:void(0);" data="Objects" data-type="17" onclick="onClick(this)">cat</a>
<a href="javascript:void(0);" data="Objects" data-type="18" onclick="onClick(this)">dog</a>
<a href="javascript:void(0);" data="Objects" data-type="19" onclick="onClick(this)">horse</a>
<a href="javascript:void(0);" data="Objects" data-type="20" onclick="onClick(this)">sheep</a>
<a href="javascript:void(0);" data="Objects" data-type="21" onclick="onClick(this)">cow</a>
<a href="javascript:void(0);" data="Objects" data-type="22" onclick="onClick(this)">elephant</a>
<a href="javascript:void(0);" data="Objects" data-type="24" onclick="onClick(this)">zebra</a>
<a href="javascript:void(0);" data="Objects" data-type="25" onclick="onClick(this)">giraffe</a>
</div>
</li>
<li class="item" id="messages">
<a href="javascript:void(0);" class="btn" data="Scenes" onclick="onClick(this)"><i class="far fa-envelope"></i>Scenes</a>
<!-- <div class="smenu">
<a href="javascript:void(0);" data="Scenes" data-type="train" onclick="onClick(this)">train</a>
<a href="javascript:void(0);" data="Scenes" data-type="val" onclick="onClick(this)">val</a>
</div> -->
</li>
<!-- <li class="item">
<a href="#" class="btn"><i class="far fa-sign-out-alt"></i>Introduction</a>
</li> -->
</ul>
</div>
<div class="right"></div>
</div>
</body>
</html>