-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (68 loc) · 3.78 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
68
69
<!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">
<style>
.blue-circle{
animation-delay: 0.1s;
}
.green-circle{
animation-delay: 0.2s;
}
.red-circle{
animation-delay: 0.3s;
}
</style>
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="./styles.css">
<script src="./vue.min.js" defer></script>
<script src="./index.js" defer></script>
<title>Movies HomePage | Jesus Morales</title>
</head>
<body>
<div id="appVue" class="bg-gray-400 w-screen h-screen">
<div class="flex justify-center items-center bg-gray-900 h-screen z-30" id="preolader">
<div class="bg-white flex space-x-2 p-5 rounded-full justify-center items-center">
<div class="bg-blue-600 p-2 w-4 h-4 rounded-full animate-bounce blue-circle"></div>
<div class="bg-green-600 p-2 w-4 h-4 rounded-full animate-bounce green-circle"></div>
<div class="bg-red-600 p-2 w-4 h-4 rounded-full animate-bounce red-circle"></div>
</div>
</div>
<div class="flex flex-col hidden" id="body">
<header class="w-full flex flex-row text-white justify-center content-center">
<div class="bg-gray-600 w-10/12 flex flex-row items-center justify-between p-2 mt-4 rounded-lg">
<h3 class="font-semibold"><span class="text-blue-500">The</span> Movie <span class="text-red-500 font-bold">db</span></h3>
<ul class="flex flex-row space-x-3 mr-2">
<li class="hover:text-red-500 hover:font-bold transform hover:scale-125 transition duration-300"><a href="#">Inicio</a></li>
<li class="hover:text-red-500 hover:font-bold transform hover:scale-125 transition duration-300"><a href="#">Descubrir</a></li>
</ul>
</div>
</header>
<div class="bg-gray-800 mt-28 w-screen h-auto">
<div class="w-10/12 p-4 mx-auto my-5 grid sm:grid-cols-1 md:grid-cols-4 gap-3 place-content-center">
<div v-for="peli in movies" :key="peli.id" class="bg-gray-500 rounded-md relative ring-2 ring-gray-900 group hover:border-red-500 transition hover:duration-300">
<img :src="peli.poster_path" alt="Poster" class="bg-cover bg-center rounded-md">
<div class="absolute bottom-0 w-full px-2 bg-gray-800 opacity-50 text-right group-hover:opacity-0">
<strong class="text-yellow-500"><i class='bx bxs-star'></i>{{peli.vote_average}}</strong>
</div>
<div class="absolute flex flex-col group-hover:opacity-100 bg-scroll max-h-96 overflow-auto opacity-0 h-full w-full top-0 rounded-md bg-transparent bg-opacity-50 bg-gray-300 transition duration-300 p-1 divide-y-2 divide-red-500">
<div class="flex-row text-center font-semibold">
<small></i>{{peli.title}}</small>
</div>
<div class="flex-row text-center">
<small>{{peli.overview}}</small>
</div>
<div class="flex-row text-center">
<small>Lanzamiento: {{peli.release_date}}</small>
<small>Votos: {{peli.vote_average}}</small>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>