-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (61 loc) · 2.7 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
<!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 href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous"> <!-- Custom css -->
<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="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css">
<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="row mt-3 g-2 d-flex justify-content-center">
<div class="col-md-6">
<input type="text" class="form-control" id="search" placeholder="nature">
</div>
<div class="col-auto">
<button type="button" id="search-btn" class="btn btn-primary mb-2">Search</button>
</div>
</div>
<section class="images">
<div class="row justify-content-center align-items-center mt-3 gallery-header mb-4">
<div class="col-auto">
<h3 class="head-title text-center">Select image for create slider</h3>
</div>
<div class="col-md-3">
<input class="form-control" id="duration" placeholder="slider change duration">
</div>
<div class="col-auto">
<button id="create-slider" class="btn btn-primary px-5">Create slider</button>
</div>
</div>
<!-- spinner -->
<div id="loading-spinner" class="mt-5 d-flex justify-content-center d-none">
<div class="spinner-border text-warning" role="status"></div>
</div>
<div id="image-container" class="row gallery"></div>
</section>
<!-- slider -->
<div class="main">
<section class="mt-5" id="sliders"></section>
<div class="d-flex justify-content-between">
<div class="dots mx-5 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 class="d-flex mx-5 mt-2 w-100 justify-content-center align-items-center bg-light">
<button id="pause-play-btn" type="button" class="btn btn-primary">Pause</button>
</div>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<script src="./app.js"></script>
</body>
</html>