-
Notifications
You must be signed in to change notification settings - Fork 0
/
details.html
141 lines (117 loc) · 3.44 KB
/
details.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="en">
<!-- As of 5/28/2020 -->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TripReel</title>
<!-- Compressed CSS -->
<link rel="stylesheet" href="foundation-6.6.3-complete/css/foundation.css">
<style>
li {
display: inline-block;
list-style-type: none;
padding-right: 20px;
margin: 20px;
background-size: cover;
background-position: center;
}
.brightness { filter: brightness(0.25); }
.utellyB {
border-radius: 8px;
background-color: lightgray;
padding: 15px;
}
ul {
text-align: -webkit-center;
}
/* Center the loader */
#loader {
position: absolute;
left: 50%;
top: 50%;
z-index: 1;
width: 150px;
height: 150px;
margin: -75px 0 0 -75px;
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #3498db;
width: 120px;
height: 120px;
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/* Add animation to "page content" */
.animate-bottom {
position: relative;
-webkit-animation-name: animatebottom;
-webkit-animation-duration: 1s;
animation-name: animatebottom;
animation-duration: 1s
}
@-webkit-keyframes animatebottom {
from {
bottom: -100px;
opacity: 0
}
to {
bottom: 0px;
opacity: 1
}
}
@keyframes animatebottom {
from {
bottom: -100px;
opacity: 0
}
to {
bottom: 0;
opacity: 1
}
}
</style>
</head>
<a class="backNav" href="index.html"><img class="backArrow" src="Assets/BackArrow.png">Back to Search</a>
<a class="logo" href="index.html">
<img src="Assets/TripReelLogo.png">
</a>
<div>
<img class="headerPic" style="visibility:hidden">
</div>
<body>
<div id="loader"></div>
<div id="main" class="text" class="grid-x grid-margin-x" style="visibility:hidden">
<div class="cell medium-6 large-4">
</div>
<div id="streaming">
<h4>Where to Watch?</h4>
<hr>
</div>
<hr>
</div>
<!-- jQuery must be imported before Foundation -->
<script src="https://cdn.jsdelivr.net/npm/jquery@3.2.1/dist/jquery.min.js"></script>
<!-- Compressed JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/foundation-sites@6.6.3/dist/js/foundation.min.js"
integrity="sha256-pRF3zifJRA9jXGv++b06qwtSqX1byFQOLjqa2PTEb2o=" crossorigin="anonymous"></script>
<script src="details.js"></script>
<script src="Wheretowatch.js"></script>
</body>
</html>