-
Notifications
You must be signed in to change notification settings - Fork 0
/
view.html
74 lines (62 loc) · 2.84 KB
/
view.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GIFs from F·R·I·E·N·D·S</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="asset/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="asset/main.js"></script>
<script>
$(window).on('load', function () {
$('#loader').fadeOut();
$('#loader').remove();
});
</script>
</head>
<body class="d-flex flex-row justify-content-center vh-100">
<div id="loader" class="position-absolute bg-dark vw-100 vh-100 d-flex justify-content-center align-items-center bg-light" style="width: 100wh; z-index: 999;">
<div class="spinner-border text-light" role="status"></div>
</div>
<header class="container d-flex flex-column justify-content-between align-items-center w-50 overflow-hidden text-light p-3">
<div class="title d-flex flex-column justify-content-center align-items-center p-5">
<h5>GIFs from</h5>
</div>
<footer class="align-self-center">
Made by
<a href="https://github.com/deepak-parmar" class="overflow-hidden" target="_blank">
<img src="https://avatars.githubusercontent.com/u/25756259?v=4" class="rounded-circle" alt="" width="45px" height="45px"></a>
Deepak Parmar
</footer>
</header>
<main class="container d-flex flex-column justify-content-top align-items-start p-5 h-100 text-light">
<a href="/friends-gifs" class="pb-4">◄ <span class="gif-title">Back to Home</span></a>
<figure class="align-self-center mb-4">
<img id="episode-gif" src="" width="365px" class="rounded">
<figcaption class="figure-caption" style="font-family: sans-serif;"></figcaption>
</figure>
<div class="d-flex flex-row justify-content-between align-items-start w-100 p-5 pt-0">
<section class="w-25">
<dl>
<dt>Episode</dt>
<dd id="episode-title"></dd>
<dt>Season</dt>
<dd id="episode-number"></dd>
</dl>
</section>
<section>
<h6>Characters</h6>
<ol id="episode-character">
</ol>
</section>
<section>
<h6>Keywords</h6>
<ul id="episode-keyword">
</ul>
</section>
</div>
</main>
</body>
</html>