-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (85 loc) · 3.47 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
<!doctype html>
<html lang="en">
<head>
<title>Title</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">
<h2 class="mt-4 mb-3 text-center">Search Image for Create Slider</h2>
<div class="form-inline mt-3 d-flex justify-content-center">
<div class="input-group col-md-6 mb-4 mt-2">
<input type="text" class="form-control" id="search" placeholder="bird" value="bird">
</div>
<button type="button" id="search-btn" class="btn btn-primary mb-2">Search</button>
</div>
<!-- spinner -->
<div class="d-flex justify-content-center mb-4">
<div id="search-spinner" class="d-none">
<div class="spinner-grow text-primary" role="status">
<span class="sr-only">Loading...</span>
</div>
<div class="spinner-grow text-secondary" role="status">
<span class="sr-only">Loading...</span>
</div>
<div class="spinner-grow text-success" role="status">
<span class="sr-only">Loading...</span>
</div>
<div class="spinner-grow text-danger" role="status">
<span class="sr-only">Loading...</span>
</div>
<div class="spinner-grow text-warning" role="status">
<span class="sr-only">Loading...</span>
</div>
<div class="spinner-grow text-info" role="status">
<span class="sr-only">Loading...</span>
</div>
<div class="spinner-grow text-dark" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
</div>
<section class="images">
<div 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">
<!-- fixing bug-2 -->
<input class="form-control" id="duration" placeholder="slider change duration" type="number" min="1000">
</div>
<button id="create-slider" class="btn btn-primary px-5">Create slider</button>
</div>
<div class="mt-3 row gallery ">
</div>
</section>
<!-- slider -->
<div class="main">
<!-- New feature Back navigation -->
<div><button type="button" id="back-btn" class="btn btn-primary">
< Back</button>
</div>
<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>
<footer>
<div class="copyright">
<p>All rights are reserved by <a href="https://github.com/hasibcsepstubd" target="_blank"
rel="noopener noreferrer">Md. Hasibur Rashid</a></p>
</div>
</footer>
<!-- Optional JavaScript -->
<script src="./app.js"></script>
</body>
</html>