Spaces:
Running
Running
Create movie.html
Browse files- movie.html +291 -0
movie.html
ADDED
@@ -0,0 +1,291 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Movie Details - SlimShadow Movies</title>
|
7 |
+
<style>
|
8 |
+
* {
|
9 |
+
margin: 0;
|
10 |
+
padding: 0;
|
11 |
+
box-sizing: border-box;
|
12 |
+
}
|
13 |
+
|
14 |
+
body {
|
15 |
+
font-family: Arial, sans-serif;
|
16 |
+
background-color: #1a1a1a;
|
17 |
+
color: white;
|
18 |
+
min-height: 100vh;
|
19 |
+
}
|
20 |
+
|
21 |
+
.header {
|
22 |
+
background-color: #2a2a2a;
|
23 |
+
padding: 20px 0;
|
24 |
+
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
|
25 |
+
}
|
26 |
+
|
27 |
+
.header h1 {
|
28 |
+
text-align: center;
|
29 |
+
color: #007bff;
|
30 |
+
font-size: 2rem;
|
31 |
+
}
|
32 |
+
|
33 |
+
.container {
|
34 |
+
max-width: 1200px;
|
35 |
+
margin: 0 auto;
|
36 |
+
padding: 20px;
|
37 |
+
}
|
38 |
+
|
39 |
+
.movie-details {
|
40 |
+
display: grid;
|
41 |
+
grid-template-columns: 300px 1fr;
|
42 |
+
gap: 30px;
|
43 |
+
margin-top: 30px;
|
44 |
+
}
|
45 |
+
|
46 |
+
.poster img {
|
47 |
+
width: 100%;
|
48 |
+
border-radius: 10px;
|
49 |
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
|
50 |
+
}
|
51 |
+
|
52 |
+
.info h2 {
|
53 |
+
font-size: 2.5rem;
|
54 |
+
margin-bottom: 10px;
|
55 |
+
color: #fff;
|
56 |
+
}
|
57 |
+
|
58 |
+
.meta {
|
59 |
+
display: flex;
|
60 |
+
gap: 20px;
|
61 |
+
margin-bottom: 20px;
|
62 |
+
color: #ccc;
|
63 |
+
}
|
64 |
+
|
65 |
+
.rating {
|
66 |
+
color: #ffd700;
|
67 |
+
font-weight: bold;
|
68 |
+
}
|
69 |
+
|
70 |
+
.overview {
|
71 |
+
font-size: 1.1rem;
|
72 |
+
line-height: 1.6;
|
73 |
+
margin-bottom: 30px;
|
74 |
+
}
|
75 |
+
|
76 |
+
.section {
|
77 |
+
margin-bottom: 30px;
|
78 |
+
}
|
79 |
+
|
80 |
+
.section h3 {
|
81 |
+
font-size: 1.5rem;
|
82 |
+
margin-bottom: 15px;
|
83 |
+
color: #007bff;
|
84 |
+
}
|
85 |
+
|
86 |
+
.cast-grid {
|
87 |
+
display: grid;
|
88 |
+
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
|
89 |
+
gap: 20px;
|
90 |
+
}
|
91 |
+
|
92 |
+
.cast-card {
|
93 |
+
background-color: #2a2a2a;
|
94 |
+
border-radius: 8px;
|
95 |
+
overflow: hidden;
|
96 |
+
}
|
97 |
+
|
98 |
+
.cast-card img {
|
99 |
+
width: 100%;
|
100 |
+
height: 225px;
|
101 |
+
object-fit: cover;
|
102 |
+
}
|
103 |
+
|
104 |
+
.cast-info {
|
105 |
+
padding: 10px;
|
106 |
+
}
|
107 |
+
|
108 |
+
.cast-info h4 {
|
109 |
+
margin-bottom: 5px;
|
110 |
+
}
|
111 |
+
|
112 |
+
.cast-info p {
|
113 |
+
color: #ccc;
|
114 |
+
font-size: 0.9rem;
|
115 |
+
}
|
116 |
+
|
117 |
+
.watch-button {
|
118 |
+
display: inline-block;
|
119 |
+
background-color: #007bff;
|
120 |
+
color: white;
|
121 |
+
padding: 12px 24px;
|
122 |
+
border-radius: 5px;
|
123 |
+
text-decoration: none;
|
124 |
+
font-weight: bold;
|
125 |
+
margin-top: 20px;
|
126 |
+
transition: background-color 0.3s;
|
127 |
+
}
|
128 |
+
|
129 |
+
.watch-button:hover {
|
130 |
+
background-color: #0056b3;
|
131 |
+
}
|
132 |
+
|
133 |
+
.photos-grid {
|
134 |
+
display: grid;
|
135 |
+
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
136 |
+
gap: 20px;
|
137 |
+
margin-top: 20px;
|
138 |
+
}
|
139 |
+
|
140 |
+
.photo-item img {
|
141 |
+
width: 100%;
|
142 |
+
border-radius: 8px;
|
143 |
+
cursor: pointer;
|
144 |
+
transition: transform 0.3s;
|
145 |
+
}
|
146 |
+
|
147 |
+
.photo-item img:hover {
|
148 |
+
transform: scale(1.05);
|
149 |
+
}
|
150 |
+
|
151 |
+
@media (max-width: 768px) {
|
152 |
+
.movie-details {
|
153 |
+
grid-template-columns: 1fr;
|
154 |
+
}
|
155 |
+
|
156 |
+
.poster {
|
157 |
+
max-width: 300px;
|
158 |
+
margin: 0 auto;
|
159 |
+
}
|
160 |
+
|
161 |
+
.cast-grid {
|
162 |
+
grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
|
163 |
+
}
|
164 |
+
|
165 |
+
.info h2 {
|
166 |
+
font-size: 2rem;
|
167 |
+
}
|
168 |
+
|
169 |
+
.meta {
|
170 |
+
flex-wrap: wrap;
|
171 |
+
}
|
172 |
+
}
|
173 |
+
</style>
|
174 |
+
</head>
|
175 |
+
<body>
|
176 |
+
<header class="header">
|
177 |
+
<h1>SlimShadow Movies</h1>
|
178 |
+
</header>
|
179 |
+
|
180 |
+
<div class="container">
|
181 |
+
<div id="movieContent"></div>
|
182 |
+
</div>
|
183 |
+
|
184 |
+
<script>
|
185 |
+
const TMDB_API_KEY = 'c8402e1c7b8bb9bcbf95b3fa3bad4d84';
|
186 |
+
const CORS_PROXY = 'https://api.allorigins.win/raw?url=';
|
187 |
+
|
188 |
+
async function getMovieDetails(movieId) {
|
189 |
+
try {
|
190 |
+
const [movieData, credits, images] = await Promise.all([
|
191 |
+
fetch(`${CORS_PROXY}${encodeURIComponent(
|
192 |
+
`https://api.themoviedb.org/3/movie/${movieId}?api_key=${TMDB_API_KEY}`
|
193 |
+
)}`).then(res => res.json()),
|
194 |
+
fetch(`${CORS_PROXY}${encodeURIComponent(
|
195 |
+
`https://api.themoviedb.org/3/movie/${movieId}/credits?api_key=${TMDB_API_KEY}`
|
196 |
+
)}`).then(res => res.json()),
|
197 |
+
fetch(`${CORS_PROXY}${encodeURIComponent(
|
198 |
+
`https://api.themoviedb.org/3/movie/${movieId}/images?api_key=${TMDB_API_KEY}`
|
199 |
+
)}`).then(res => res.json())
|
200 |
+
]);
|
201 |
+
|
202 |
+
displayMovieDetails(movieData, credits, images);
|
203 |
+
} catch (error) {
|
204 |
+
console.error('Error fetching movie details:', error);
|
205 |
+
}
|
206 |
+
}
|
207 |
+
|
208 |
+
function displayMovieDetails(movie, credits, images) {
|
209 |
+
const content = document.getElementById('movieContent');
|
210 |
+
|
211 |
+
const revenue = new Intl.NumberFormat('en-US', {
|
212 |
+
style: 'currency',
|
213 |
+
currency: 'USD'
|
214 |
+
}).format(movie.revenue);
|
215 |
+
|
216 |
+
const budget = new Intl.NumberFormat('en-US', {
|
217 |
+
style: 'currency',
|
218 |
+
currency: 'USD'
|
219 |
+
}).format(movie.budget);
|
220 |
+
|
221 |
+
content.innerHTML = `
|
222 |
+
<div class="movie-details">
|
223 |
+
<div class="poster">
|
224 |
+
<img src="https://image.tmdb.org/t/p/w500${movie.poster_path}"
|
225 |
+
alt="${movie.title}"
|
226 |
+
onerror="this.src='https://via.placeholder.com/500x750?text=No+Poster'">
|
227 |
+
<a href="https://vidsrc.in/embed/movie/${movie.id}"
|
228 |
+
target="_blank"
|
229 |
+
class="watch-button">Watch Movie</a>
|
230 |
+
</div>
|
231 |
+
<div class="info">
|
232 |
+
<h2>${movie.title}</h2>
|
233 |
+
<div class="meta">
|
234 |
+
<span>${movie.release_date.split('-')[0]}</span>
|
235 |
+
<span>${movie.runtime} min</span>
|
236 |
+
<span class="rating">★ ${movie.vote_average.toFixed(1)}</span>
|
237 |
+
</div>
|
238 |
+
<p class="overview">${movie.overview}</p>
|
239 |
+
|
240 |
+
<div class="section">
|
241 |
+
<h3>Movie Info</h3>
|
242 |
+
<p><strong>Status:</strong> ${movie.status}</p>
|
243 |
+
<p><strong>Budget:</strong> ${budget}</p>
|
244 |
+
<p><strong>Revenue:</strong> ${revenue}</p>
|
245 |
+
<p><strong>Genres:</strong> ${movie.genres.map(g => g.name).join(', ')}</p>
|
246 |
+
</div>
|
247 |
+
|
248 |
+
<div class="section">
|
249 |
+
<h3>Cast</h3>
|
250 |
+
<div class="cast-grid">
|
251 |
+
${credits.cast.slice(0, 6).map(actor => `
|
252 |
+
<div class="cast-card">
|
253 |
+
<img src="https://image.tmdb.org/t/p/w185${actor.profile_path}"
|
254 |
+
alt="${actor.name}"
|
255 |
+
onerror="this.src='https://via.placeholder.com/185x278?text=No+Image'">
|
256 |
+
<div class="cast-info">
|
257 |
+
<h4>${actor.name}</h4>
|
258 |
+
<p>${actor.character}</p>
|
259 |
+
</div>
|
260 |
+
</div>
|
261 |
+
`).join('')}
|
262 |
+
</div>
|
263 |
+
</div>
|
264 |
+
|
265 |
+
<div class="section">
|
266 |
+
<h3>Photos</h3>
|
267 |
+
<div class="photos-grid">
|
268 |
+
${images.backdrops.slice(0, 6).map(image => `
|
269 |
+
<div class="photo-item">
|
270 |
+
<img src="https://image.tmdb.org/t/p/w500${image.file_path}"
|
271 |
+
alt="Movie still"
|
272 |
+
loading="lazy">
|
273 |
+
</div>
|
274 |
+
`).join('')}
|
275 |
+
</div>
|
276 |
+
</div>
|
277 |
+
</div>
|
278 |
+
</div>
|
279 |
+
`;
|
280 |
+
}
|
281 |
+
|
282 |
+
// Get movie ID from URL parameters
|
283 |
+
const urlParams = new URLSearchParams(window.location.search);
|
284 |
+
const movieId = urlParams.get('id');
|
285 |
+
|
286 |
+
if (movieId) {
|
287 |
+
getMovieDetails(movieId);
|
288 |
+
}
|
289 |
+
</script>
|
290 |
+
</body>
|
291 |
+
</html>
|