File size: 11,557 Bytes
204cffd
 
 
 
 
0988a9c
204cffd
 
 
0988a9c
204cffd
 
8706234
 
 
 
204cffd
 
 
8706234
 
 
 
 
204cffd
 
8706234
204cffd
8706234
 
 
 
0988a9c
204cffd
 
8706234
 
 
 
 
 
 
 
 
 
 
 
0988a9c
 
 
 
 
 
204cffd
 
8706234
 
 
 
 
 
0988a9c
 
204cffd
 
8706234
 
 
 
0988a9c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
204cffd
 
8706234
 
 
 
 
 
 
 
0988a9c
 
 
 
204cffd
 
 
 
0988a9c
 
 
 
 
 
 
 
 
 
 
 
8706234
 
 
 
 
 
 
 
204cffd
8706234
204cffd
0988a9c
b20d4bd
 
 
 
 
 
 
 
 
 
 
0988a9c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67111f1
0988a9c
67111f1
 
0988a9c
 
 
67111f1
 
0988a9c
 
 
204cffd
 
b20d4bd
0988a9c
 
204cffd
0988a9c
204cffd
8706234
0988a9c
b20d4bd
 
 
 
 
 
 
 
 
 
 
0988a9c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
204cffd
 
 
 
 
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
276
277
278
<!DOCTYPE html>
<html lang="es">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Galería Visual Impactante</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;600;700&display=swap" rel="stylesheet">
    <style>
        body {
            margin: 0;
            padding: 0;
            font-family: 'Playfair Display', serif;
            color: white;
            overflow-x: hidden;
        }
        
        .hero-container {
            position: relative;
            height: 100vh;
            width: 100vw;
            overflow: hidden;
        }
        
        .hero-image {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            transition: transform 0.5s ease;
        }
        
        .hero-content {
            position: absolute;
            z-index: 2;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            background: rgba(0, 0, 0, 0.2);
            opacity: 0;
            transition: opacity 0.8s ease;
        }
        
        .hero-container:hover .hero-content {
            opacity: 1;
        }
        
        .hero-title {
            font-size: 8vw;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 1rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            transform: translateY(20px);
            transition: transform 0.5s ease;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            max-width: 600px;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
            transform: translateY(20px);
            transition: transform 0.5s ease 0.1s;
            font-family: 'Montserrat', sans-serif;
            font-weight: 300;
        }
        
        .hero-container:hover .hero-title,
        .hero-container:hover .hero-subtitle {
            transform: translateY(0);
        }
        
        .nav-dots {
            position: fixed;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .nav-dot.active {
            background: white;
            transform: scale(1.3);
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 12vw;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .nav-dots {
                display: none;
            }
        }
    </style>
</head>
<body>
    <!-- Navigation Dots -->
    <div class="nav-dots">
        <div class="nav-dot active" data-section="0"></div>
        <div class="nav-dot" data-section="1"></div>
        <div class="nav-dot" data-section="2"></div>
        <div class="nav-dot" data-section="3"></div>
        <div class="nav-dot" data-section="4"></div>
        <div class="nav-dot" data-section="5"></div>
        <div class="nav-dot" data-section="6"></div>
    </div>

    <!-- Section 1 -->
    <div class="hero-container">
        <img src="https://huggingface.co/datasets/Malaji71/imagenes/resolve/main/malaji71_IMG_7249.CR2_ISO_400_f16_11000s_50mm_MF_A_crazy_person_4a13a1fb-3eb8-4175-8fe4-8250ced7722e.png" 
             alt="Keynote ha muerto" 
             class="hero-image">
        
        <div class="hero-content">
            <h1 class="hero-title">Keynote ha muerto</h1>
            <p class="hero-subtitle">La nueva era de las presentaciones visuales</p>
        </div>
    </div>

    <!-- Section 2 -->
    <div class="hero-container">
        <img src="https://datasets-server.huggingface.co/assets/Malaji71/imagenes/--/24517f4d9d97cae07d3446e1a4c60bab0586a779/--/default/train/4/image/image.jpg?Expires=1747667165&Signature=bnr98m3MrrYWMVFj52O6EupK9ezh5VFxhm2Sn18eCZ7a68EmT-SxJ1jK-~NwzA6cy1bC5s-ZNVY8~ag9vF8Vd00xxbV0Em9uilUe1U2WrtbQyIV~rriiOUNoC1C5ucix0~lbh6r6lZp2FxOPqKi31lM6duvQQSaf9sz3G50s~56btYWVWcrBOPZkvI4M0ROlff7SFeOaJ94IT-Qg6BCXYa7~Q9o33WeKDqiafw~4FD7UhrOYE9Hv0J02pT-03iba8c8a3zdBLhkOJVLXXak3PwVfXTxQBVVM7qyVuf-FJORUNldZaFwKFL3K4641s4fApAd6XcuZDFuCxGZdsqr7Ig__&Key-Pair-Id=K3EI6M078Z3AC3" 
             alt="Que se mueran los feos" 
             class="hero-image">
        
        <div class="hero-content">
            <h1 class="hero-title">Que se mueran los feos</h1>
            <p class="hero-subtitle">Y todos los que los apoyan</p>
        </div>
    </div>

    <!-- Section 3 -->
    <div class="hero-container">
        <img src="https://huggingface.co/datasets/Malaji71/imagenes/resolve/main/WhatsApp%20Image%202025-05-18%20at%2012.45.32.jpeg" 
             alt="Instantáneas del caos" 
             class="hero-image">
        
        <div class="hero-content">
            <h1 class="hero-title">Instantáneas del caos</h1>
            <p class="hero-subtitle">Cuando la realidad supera la ficción</p>
        </div>
    </div>

    <!-- Section 4 -->
    <div class="hero-container">
        <img src="https://huggingface.co/datasets/Malaji71/imagenes/resolve/main/magnific-fKE10HPbp6kO5KajBZFJ-malaji71_CSP_MANGA15.CLIP_portrait_of_a_young_woman_with_short__23e9ab78-b3fd-43f8-bb96-1e2f38871976.jpeg" 
             alt="Retrato de una era" 
             class="hero-image">
        
        <div class="hero-content">
            <h1 class="hero-title">Retrato de una era</h1>
            <p class="hero-subtitle">La belleza en la simplicidad</p>
        </div>
    </div>

    <!-- Section 5 -->
    <div class="hero-container">
        <img src="https://huggingface.co/datasets/Malaji71/imagenes/resolve/main/malaji71_A001C003_140325_R28F.ari_ISO_800_f16_130s_135mm_MF_A_m_cdd45518-cc4d-4cd6-96f9-c2aafb5a9d04.png" 
             alt="El arte de la luz" 
             class="hero-image">
        
        <div class="hero-content">
            <h1 class="hero-title">El arte de la luz</h1>
            <p class="hero-subtitle">Cuando la fotografía se convierte en pintura</p>
        </div>
    </div>

    <!-- Section 6 -->
    <div class="hero-container">
        <img src="https://huggingface.co/datasets/Malaji71/imagenes/resolve/main/malaji71_A001C003_140325_R28F.ari_ISO_800_f16_130s_135mm_MF_A_m_e5199102-ad12-41fe-8813-42f62709ce4a.png" 
             alt="Sombras que hablan" 
             class="hero-image">
        
        <div class="hero-content">
            <h1 class="hero-title">Sombras que hablan</h1>
            <p class="hero-subtitle">Lo que no se ve es más importante que lo visible</p>
        </div>
    </div>

    <!-- Section 7 (Nueva imagen) -->
    <div class="hero-container">
        <img src="https://huggingface.co/datasets/Malaji71/imagenes/resolve/main/malaji71_IMG_8123.CR3_ISO_800_f1.8_1250s_85mm_MF_A_smiling_youn_7f0c8890-777b-4940-a417-c3ac9559e506.png" 
             alt="Sonrisa fugaz" 
             class="hero-image">
        
        <div class="hero-content">
            <h1 class="hero-title">Sonrisa fugaz</h1>
            <p class="hero-subtitle">Un instante de alegría capturado para la eternidad</p>
        </div>
    </div>

    <script>
        document.addEventListener('DOMContentLoaded', function() {
            const heroImages = document.querySelectorAll('.hero-image');
            const heroContainers = document.querySelectorAll('.hero-container');
            const navDots = document.querySelectorAll('.nav-dot');
            
            // Parallax effect
            window.addEventListener('scroll', function() {
                const scrollPosition = window.pageYOffset;
                
                heroImages.forEach(img => {
                    const section = img.parentElement;
                    const sectionTop = section.offsetTop;
                    const sectionHeight = section.offsetHeight;
                    
                    if (scrollPosition > sectionTop - window.innerHeight && 
                        scrollPosition < sectionTop + sectionHeight) {
                        const relativeScroll = scrollPosition - sectionTop;
                        img.style.transform = `translateY(${relativeScroll * 0.3}px)`;
                    }
                });
                
                // Update active nav dot
                heroContainers.forEach((container, index) => {
                    const rect = container.getBoundingClientRect();
                    if (rect.top <= window.innerHeight / 2 && rect.bottom >= window.innerHeight / 2) {
                        navDots.forEach(dot => dot.classList.remove('active'));
                        navDots[index].classList.add('active');
                    }
                });
            });
            
            // Navigation dots click event
            navDots.forEach(dot => {
                dot.addEventListener('click', function() {
                    const sectionIndex = parseInt(this.getAttribute('data-section'));
                    const targetSection = heroContainers[sectionIndex];
                    window.scrollTo({
                        top: targetSection.offsetTop,
                        behavior: 'smooth'
                    });
                });
            });
            
            // Show content on hover
            heroContainers.forEach(container => {
                container.addEventListener('mouseenter', function() {
                    this.querySelector('.hero-content').style.opacity = '1';
                    this.querySelector('.hero-title').style.transform = 'translateY(0)';
                    this.querySelector('.hero-subtitle').style.transform = 'translateY(0)';
                });
                
                container.addEventListener('mouseleave', function() {
                    this.querySelector('.hero-content').style.opacity = '0';
                    this.querySelector('.hero-title').style.transform = 'translateY(20px)';
                    this.querySelector('.hero-subtitle').style.transform = 'translateY(20px)';
                });
            });
        });
    </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=Malaji71/keynote-ha-muerto" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>