generated from ewuweblab/giphy-api-swiper-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (44 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- metta tags -->
<meta name="viewport" content="width=device-width; initial-scale=1; viewport-fit=cover">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- possible content values: default, black or black-translucent -->
<meta name="apple-mobile-web-app-status-bar-style"
content="black-translucent">
<title>Search and Show with Giphy API</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<!-- Stylesheet -->
<link rel="stylesheet" href="https://unpkg.com/swiper@8/swiper-bundle.min.css">
<link rel="stylesheet" href="style.css">
<!-- Scripts -->
<script defer src="https://unpkg.com/swiper@8/swiper-bundle.min.js"></script>
<script defer src="script.js"></script>
</head>
<body>
<!-- Search -->
<form action="#">
<input class="search-input" placeholder="Whatcha looking for?">
</form>
<!-- Container for Gifs (videos) -->
<div class="swiper">
<!-- Dynamically insert videos -->
<!-- Main Container -->
<div class="swiper-wrapper">
<!-- Additional required wrapper -->
<div class="swiper-wrapper"></div>
<!-- dynamic content -->
<div>
<div>
</div>
</div>
<!-- Content 1-->
<!-- <video class="swiper-slide" src="https://media.giphy.com/media/MXOjGeCm7oeaRaWSAN/giphy.mp4" autoplay loop></video> -->
</div>
</div>
</body>
</html>