-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (57 loc) · 2.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
<!doctype html>
<html lang="en">
<head>
<title>fancy slider</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="nature">
</div>
<button type="button" id="search-btn" class="btn btn-primary mb-2">Search</button>
</div>
<!-- spinner -->
<div id="loading-spinner"class=" text-center d-none ">
<div class="spinner-border text-primary" role="status">
<span class="visually-hidden"></span>
</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">
<input class="form-control" id="doration" 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">
<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>
<!-- sweetAlert cdn -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="//cdn.jsdelivr.net/npm/sweetalert2@10"></script>
</body>
</html>