|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>Adult Video Browser</title> |
|
<script src="https://cdn.tailwindcss.com"></script> |
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
|
<style> |
|
.video-card { |
|
transition: transform 0.2s; |
|
} |
|
.video-card:hover { |
|
transform: scale(1.03); |
|
} |
|
.category-chip { |
|
transition: all 0.2s; |
|
} |
|
.category-chip:hover { |
|
transform: translateY(-2px); |
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); |
|
} |
|
.nav-item { |
|
position: relative; |
|
} |
|
.nav-item.active::after { |
|
content: ''; |
|
position: absolute; |
|
bottom: -5px; |
|
left: 50%; |
|
transform: translateX(-50%); |
|
width: 20px; |
|
height: 3px; |
|
background-color: #ec4899; |
|
border-radius: 3px; |
|
} |
|
.search-bar:focus { |
|
outline: none; |
|
box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.2); |
|
} |
|
</style> |
|
</head> |
|
<body class="bg-gray-100 font-sans"> |
|
<div class="max-w-md mx-auto bg-white min-h-screen shadow-lg overflow-hidden"> |
|
|
|
<header class="bg-gradient-to-r from-purple-600 to-pink-500 p-4 text-white"> |
|
<div class="flex justify-between items-center"> |
|
<div class="flex items-center space-x-2"> |
|
<i class="fas fa-video text-xl"></i> |
|
<h1 class="text-xl font-bold">AdultTube</h1> |
|
</div> |
|
<div class="flex space-x-4"> |
|
<button class="text-white"> |
|
<i class="fas fa-search"></i> |
|
</button> |
|
<button class="text-white"> |
|
<i class="fas fa-user"></i> |
|
</button> |
|
</div> |
|
</div> |
|
|
|
<div class="mt-4 relative"> |
|
<input type="text" placeholder="Search videos..." |
|
class="w-full py-2 px-4 rounded-full bg-white bg-opacity-20 placeholder-white text-white search-bar"> |
|
<button class="absolute right-3 top-2 text-white"> |
|
<i class="fas fa-search"></i> |
|
</button> |
|
</div> |
|
</header> |
|
|
|
|
|
<nav class="flex justify-around py-3 border-b"> |
|
<a href="#" class="nav-item active text-pink-500"> |
|
<i class="fas fa-home"></i> |
|
<span class="block text-xs mt-1">Home</span> |
|
</a> |
|
<a href="#" class="nav-item text-gray-500"> |
|
<i class="fas fa-fire"></i> |
|
<span class="block text-xs mt-1">Trending</span> |
|
</a> |
|
<a href="#" class="nav-item text-gray-500"> |
|
<i class="fas fa-star"></i> |
|
<span class="block text-xs mt-1">Premium</span> |
|
</a> |
|
<a href="#" class="nav-item text-gray-500"> |
|
<i class="fas fa-history"></i> |
|
<span class="block text-xs mt-1">History</span> |
|
</a> |
|
<a href="#" class="nav-item text-gray-500"> |
|
<i class="fas fa-heart"></i> |
|
<span class="block text-xs mt-1">Favorites</span> |
|
</a> |
|
</nav> |
|
|
|
|
|
<main class="p-4 overflow-y-auto" style="max-height: calc(100vh - 180px)"> |
|
|
|
<div class="mb-6"> |
|
<h2 class="text-lg font-bold mb-3 text-gray-800">Categories</h2> |
|
<div class="flex flex-wrap gap-2"> |
|
<button class="category-chip bg-pink-100 text-pink-700 px-3 py-1 rounded-full text-sm font-medium">Amateur</button> |
|
<button class="category-chip bg-blue-100 text-blue-700 px-3 py-1 rounded-full text-sm font-medium">Anal</button> |
|
<button class="category-chip bg-green-100 text-green-700 px-3 py-1 rounded-full text-sm font-medium">Asian</button> |
|
<button class="category-chip bg-yellow-100 text-yellow-700 px-3 py-1 rounded-full text-sm font-medium">BBW</button> |
|
<button class="category-chip bg-purple-100 text-purple-700 px-3 py-1 rounded-full text-sm font-medium">BDSM</button> |
|
<button class="category-chip bg-red-100 text-red-700 px-3 py-1 rounded-full text-sm font-medium">Blonde</button> |
|
<button class="category-chip bg-indigo-100 text-indigo-700 px-3 py-1 rounded-full text-sm font-medium">Brunette</button> |
|
<button class="category-chip bg-gray-100 text-gray-700 px-3 py-1 rounded-full text-sm font-medium">More...</button> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="mb-6"> |
|
<div class="flex justify-between items-center mb-3"> |
|
<h2 class="text-lg font-bold text-gray-800">Recommended For You</h2> |
|
<a href="#" class="text-sm text-pink-500">See all</a> |
|
</div> |
|
<div class="grid grid-cols-2 gap-3"> |
|
|
|
<div class="video-card bg-white rounded-lg overflow-hidden shadow"> |
|
<div class="relative"> |
|
<img src="https://via.placeholder.com/160x90/ec4899/ffffff?text=Video+1" |
|
alt="Video thumbnail" class="w-full h-32 object-cover"> |
|
<span class="absolute bottom-1 right-1 bg-black bg-opacity-70 text-white text-xs px-1 rounded">12:34</span> |
|
</div> |
|
<div class="p-2"> |
|
<h3 class="text-sm font-medium text-gray-800 truncate">Hot amateur couple having fun</h3> |
|
<div class="flex justify-between text-xs text-gray-500 mt-1"> |
|
<span>1.2M views</span> |
|
<span>95%</span> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="video-card bg-white rounded-lg overflow-hidden shadow"> |
|
<div class="relative"> |
|
<img src="https://via.placeholder.com/160x90/6366f1/ffffff?text=Video+2" |
|
alt="Video thumbnail" class="w-full h-32 object-cover"> |
|
<span class="absolute bottom-1 right-1 bg-black bg-opacity-70 text-white text-xs px-1 rounded">8:21</span> |
|
</div> |
|
<div class="p-2"> |
|
<h3 class="text-sm font-medium text-gray-800 truncate">Passionate night with brunette</h3> |
|
<div class="flex justify-between text-xs text-gray-500 mt-1"> |
|
<span>856K views</span> |
|
<span>92%</span> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="mb-6"> |
|
<div class="flex justify-between items-center mb-3"> |
|
<h2 class="text-lg font-bold text-gray-800">Trending Now</h2> |
|
<a href="#" class="text-sm text-pink-500">See all</a> |
|
</div> |
|
<div class="space-y-3"> |
|
|
|
<div class="video-card flex bg-white rounded-lg overflow-hidden shadow"> |
|
<div class="relative w-1/3"> |
|
<img src="https://via.placeholder.com/120x90/f59e0b/ffffff?text=Trending+1" |
|
alt="Video thumbnail" class="w-full h-full object-cover"> |
|
<span class="absolute bottom-1 right-1 bg-black bg-opacity-70 text-white text-xs px-1 rounded">15:47</span> |
|
</div> |
|
<div class="p-2 w-2/3"> |
|
<h3 class="text-sm font-medium text-gray-800 line-clamp-2">Steamy session with busty blonde in the shower</h3> |
|
<div class="flex justify-between text-xs text-gray-500 mt-1"> |
|
<span>2.4M views</span> |
|
<span>97%</span> |
|
</div> |
|
<div class="flex items-center mt-1 text-xs text-gray-500"> |
|
<i class="fas fa-bolt text-yellow-500 mr-1"></i> |
|
<span>#1 Trending</span> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="video-card flex bg-white rounded-lg overflow-hidden shadow"> |
|
<div class="relative w-1/3"> |
|
<img src="https://via.placeholder.com/120x90/10b981/ffffff?text=Trending+2" |
|
alt="Video thumbnail" class="w-full h-full object-cover"> |
|
<span class="absolute bottom-1 right-1 bg-black bg-opacity-70 text-white text-xs px-1 rounded">22:15</span> |
|
</div> |
|
<div class="p-2 w-2/3"> |
|
<h3 class="text-sm font-medium text-gray-800 line-clamp-2">Romantic couple explores new positions</h3> |
|
<div class="flex justify-between text-xs text-gray-500 mt-1"> |
|
<span>1.8M views</span> |
|
<span>96%</span> |
|
</div> |
|
<div class="flex items-center mt-1 text-xs text-gray-500"> |
|
<i class="fas fa-bolt text-yellow-500 mr-1"></i> |
|
<span>#3 Trending</span> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div> |
|
<h2 class="text-lg font-bold mb-3 text-gray-800">Popular Categories</h2> |
|
<div class="grid grid-cols-3 gap-2"> |
|
<div class="category-card relative rounded-lg overflow-hidden h-24"> |
|
<img src="https://via.placeholder.com/120x90/8b5cf6/ffffff?text=Amateur" |
|
alt="Category" class="w-full h-full object-cover"> |
|
<div class="absolute inset-0 bg-black bg-opacity-30 flex items-center justify-center"> |
|
<span class="text-white font-medium text-sm">Amateur</span> |
|
</div> |
|
</div> |
|
<div class="category-card relative rounded-lg overflow-hidden h-24"> |
|
<img src="https://via.placeholder.com/120x90/ec4899/ffffff?text=Teen" |
|
alt="Category" class="w-full h-full object-cover"> |
|
<div class="absolute inset-0 bg-black bg-opacity-30 flex items-center justify-center"> |
|
<span class="text-white font-medium text-sm">Teen</span> |
|
</div> |
|
</div> |
|
<div class="category-card relative rounded-lg overflow-hidden h-24"> |
|
<img src="https://via.placeholder.com/120x90/3b82f6/ffffff?text=MILF" |
|
alt="Category" class="w-full h-full object-cover"> |
|
<div class="absolute inset-0 bg-black bg-opacity-30 flex items-center justify-center"> |
|
<span class="text-white font-medium text-sm">MILF</span> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</main> |
|
|
|
|
|
<div class="fixed bottom-0 left-0 right-0 max-w-md mx-auto bg-white border-t flex justify-around py-2"> |
|
<button class="text-pink-500"> |
|
<i class="fas fa-home text-xl"></i> |
|
</button> |
|
<button class="text-gray-500"> |
|
<i class="fas fa-compass text-xl"></i> |
|
</button> |
|
<button class="bg-pink-500 text-white p-2 rounded-full -mt-6 shadow-lg"> |
|
<i class="fas fa-plus text-xl"></i> |
|
</button> |
|
<button class="text-gray-500"> |
|
<i class="fas fa-bookmark text-xl"></i> |
|
</button> |
|
<button class="text-gray-500"> |
|
<i class="fas fa-cog text-xl"></i> |
|
</button> |
|
</div> |
|
</div> |
|
|
|
<script> |
|
|
|
document.addEventListener('DOMContentLoaded', function() { |
|
|
|
const navItems = document.querySelectorAll('.nav-item'); |
|
navItems.forEach(item => { |
|
item.addEventListener('click', function(e) { |
|
e.preventDefault(); |
|
navItems.forEach(i => i.classList.remove('active', 'text-pink-500')); |
|
navItems.forEach(i => i.classList.add('text-gray-500')); |
|
this.classList.add('active', 'text-pink-500'); |
|
this.classList.remove('text-gray-500'); |
|
}); |
|
}); |
|
|
|
|
|
const videoCards = document.querySelectorAll('.video-card'); |
|
videoCards.forEach(card => { |
|
card.addEventListener('click', function() { |
|
alert('This is just a demo. In a real app, this would open the video player.'); |
|
}); |
|
}); |
|
|
|
|
|
const categoryChips = document.querySelectorAll('.category-chip'); |
|
categoryChips.forEach(chip => { |
|
chip.addEventListener('click', function() { |
|
const category = this.textContent.trim(); |
|
alert(`Filtering by category: ${category}`); |
|
}); |
|
}); |
|
}); |
|
</script> |
|
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=h4z333/adulttube" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
</html> |