-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (77 loc) · 2.48 KB
/
index.html
File metadata and controls
79 lines (77 loc) · 2.48 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Image Search Site</title>
<!-- 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.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.1.1/css/all.css"
integrity="sha384-O8whS3fhG2OnA5Kas0Y9l3cfpmYjapjI0E4theH4iuMD+pLhbf6JI0jIMfYcK3yZ"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<h4 class="mt-2 text-center">Search Image for create slider</h4>
<div class="form-inline mt-3 d-flex justify-content-center">
<div class="input-group col-md-6 mb-2">
<input
type="text"
class="form-control"
id="search"
placeholder="Input for Get Image"
/>
</div>
<button type="button" id="search-btn" class="btn btn-primary mb-2">
Search
</button>
</div>
<div id="error"></div>
<section class="images">
<div
id="slider-creat-area"
class="justify-content-around align-items-center mt-3 gallery-header mb-2"
>
<h3 class="head-title text-center">Select image for create slider</h3>
<div class="input-group col-md-3 mb-2 mb-md-0">
<input
class="form-control"
id="duration"
placeholder="slider change duration"
/>
</div>
<button id="create-slider" class="btn btn-primary px-5">
Create slider
</button>
</div>
<div class="row gallery"></div>
</section>
<!-- slider -->
<div class="main">
<h2 id="extraSliderImage">Back To Search Result</h2>
<section class="mt-5" id="sliders"></section>
<div
class="dots d-flex mt-2 w-100 justify-content-center align-items-center bg-light"
>
<span class="dot" onclick="changeItem(-1)"></span>
<span class="dot" onclick="changeItem(1)"></span>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<script src="./app.js"></script>
</body>
</html>