File size: 7,800 Bytes
242dd77 cdd4109 242dd77 cdd4109 242dd77 cdd4109 242dd77 cdd4109 242dd77 cdd4109 242dd77 cdd4109 242dd77 cdd4109 242dd77 cdd4109 242dd77 cdd4109 242dd77 cdd4109 242dd77 cdd4109 242dd77 cdd4109 242dd77 cdd4109 242dd77 cdd4109 242dd77 cdd4109 242dd77 cdd4109 242dd77 cdd4109 242dd77 cdd4109 |
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 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Project Gallery</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: #0f0f0f;
color: #fff;
padding: 20px;
}
.header {
text-align: center;
padding: 40px 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 20px;
margin-bottom: 40px;
}
.header h1 {
font-size: 2.5em;
margin-bottom: 10px;
}
/* Featured Link Section */
.featured-link {
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
border-radius: 20px;
padding: 30px;
margin-bottom: 50px;
display: flex;
align-items: center;
gap: 30px;
flex-wrap: wrap;
}
.featured-link img {
width: 300px;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.featured-link .content {
flex: 1;
min-width: 250px;
}
.featured-link h2 {
font-size: 2em;
margin-bottom: 15px;
}
.visit-button {
display: inline-block;
padding: 15px 40px;
background: white;
color: #f5576c;
text-decoration: none;
border-radius: 50px;
font-weight: bold;
font-size: 1.1em;
transition: all 0.3s ease;
margin-top: 15px;
}
.visit-button:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(255,255,255,0.3);
}
/* Gallery Grid */
.section-title {
font-size: 2em;
margin: 40px 0 20px 0;
text-align: center;
}
.gallery {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 20px;
margin-bottom: 50px;
}
.gallery-item {
background: #1a1a1a;
border-radius: 15px;
overflow: hidden;
transition: transform 0.3s ease;
cursor: pointer;
}
.gallery-item:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
}
.gallery-item img,
.gallery-item video {
width: 100%;
height: 250px;
object-fit: cover;
display: block;
}
.gallery-item .caption {
padding: 15px;
text-align: center;
font-size: 1.1em;
}
/* Lightbox Modal */
.lightbox {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.95);
z-index: 1000;
justify-content: center;
align-items: center;
}
.lightbox.active {
display: flex;
}
.lightbox-content {
max-width: 90%;
max-height: 90%;
}
.lightbox img,
.lightbox video {
max-width: 100%;
max-height: 90vh;
border-radius: 10px;
}
.close-lightbox {
position: absolute;
top: 20px;
right: 40px;
font-size: 40px;
color: white;
cursor: pointer;
background: none;
border: none;
}
@media (max-width: 768px) {
.featured-link {
flex-direction: column;
text-align: center;
}
.featured-link img {
width: 100%;
}
.gallery {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<div class="header">
<h1>π€ AI Project Gallery</h1>
<p>HuggingFace-based AI Development Portfolio</p>
</div>
<!-- Featured Link Section -->
<div class="featured-link">
<img src="images/ginigen-screenshot.png" alt="Ginigen AI">
<div class="content">
<h2>π Ginigen AI</h2>
<p>Next-Generation AI Solution Platform</p>
<p>Accelerate your business with innovative AI technology</p>
<a href="https://www.ginigen.ai/en" target="_blank" class="visit-button">
Visit Now β
</a>
</div>
</div>
<!-- Video Gallery -->
<h2 class="section-title">π¬ Video Gallery</h2>
<div class="gallery" id="video-gallery">
<!-- First two videos: h1.mp4 and h2.mp4 -->
<div class="gallery-item">
<video src="videos/h1.mp4" controls>
Your browser does not support the video tag.
</video>
<div class="caption">Featured Demo 1</div>
</div>
<div class="gallery-item">
<video src="videos/h2.mp4" controls>
Your browser does not support the video tag.
</video>
<div class="caption">Featured Demo 2</div>
</div>
<!-- Additional videos -->
<div class="gallery-item">
<video src="videos/demo1.mp4" controls>
Your browser does not support the video tag.
</video>
<div class="caption">AI Chatbot Demo</div>
</div>
<div class="gallery-item">
<video src="videos/demo2.mp4" controls>
Your browser does not support the video tag.
</video>
<div class="caption">Object Detection Demo</div>
</div>
<!-- Add more video files here -->
</div>
<!-- Image Gallery -->
<h2 class="section-title">πΈ Image Gallery</h2>
<div class="gallery" id="image-gallery">
<div class="gallery-item" onclick="openLightbox('images/project1.jpg')">
<img src="images/project1.jpg" alt="Project 1">
<div class="caption">AI Image Generation</div>
</div>
<div class="gallery-item" onclick="openLightbox('images/project2.png')">
<img src="images/project2.png" alt="Project 2">
<div class="caption">Text Analysis Model</div>
</div>
<div class="gallery-item" onclick="openLightbox('images/project3.jpg')">
<img src="images/project3.jpg" alt="Project 3">
<div class="caption">Voice Recognition System</div>
</div>
<!-- Add more image files here -->
</div>
<!-- Lightbox Modal -->
<div class="lightbox" id="lightbox" onclick="closeLightbox()">
<button class="close-lightbox">×</button>
<div class="lightbox-content">
<img id="lightbox-img" src="" alt="Full size">
</div>
</div>
<script>
function openLightbox(src) {
document.getElementById('lightbox').classList.add('active');
document.getElementById('lightbox-img').src = src;
}
function closeLightbox() {
document.getElementById('lightbox').classList.remove('active');
}
// Close lightbox with ESC key
document.addEventListener('keydown', function(e) {
if (e.key === 'Escape') {
closeLightbox();
}
});
</script>
</body>
</html>
|