-
Notifications
You must be signed in to change notification settings - Fork 0
/
YouTube_reel.html
52 lines (49 loc) · 1.9 KB
/
YouTube_reel.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>YouTube Reels Page Loading Skeleton</title>
<!-- Tailwind CSS CDN -->
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-100 flex justify-center items-center min-h-screen p-4">
<div class="w-full max-w-3xl">
<!-- Reels List -->
<div class="animate-pulse">
<!-- Reel 1 -->
<div class="mb-6">
<div class="bg-gray-300 h-80 rounded"></div>
<div class="mt-4 space-y-3">
<div class="h-4 bg-gray-300 rounded w-3/4"></div>
<div class="h-3 bg-gray-300 rounded w-1/2"></div>
</div>
</div>
<!-- Reel 2 -->
<div class="mb-6">
<div class="bg-gray-300 h-80 rounded"></div>
<div class="mt-4 space-y-3">
<div class="h-4 bg-gray-300 rounded w-3/4"></div>
<div class="h-3 bg-gray-300 rounded w-1/2"></div>
</div>
</div>
<!-- Reel 3 -->
<div class="mb-6">
<div class="bg-gray-300 h-80 rounded"></div>
<div class="mt-4 space-y-3">
<div class="h-4 bg-gray-300 rounded w-3/4"></div>
<div class="h-3 bg-gray-300 rounded w-1/2"></div>
</div>
</div>
<!-- Reel 4 -->
<div class="mb-6">
<div class="bg-gray-300 h-80 rounded"></div>
<div class="mt-4 space-y-3">
<div class="h-4 bg-gray-300 rounded w-3/4"></div>
<div class="h-3 bg-gray-300 rounded w-1/2"></div>
</div>
</div>
</div>
</div>
</body>
</html>