File size: 17,210 Bytes
132e259
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b2caedb
132e259
 
 
 
b2caedb
 
 
 
 
 
 
 
132e259
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b2caedb
 
 
132e259
b2caedb
132e259
 
b2caedb
 
 
132e259
 
b2caedb
 
 
 
 
132e259
b2caedb
 
 
132e259
 
 
b2caedb
 
 
132e259
 
 
 
 
 
 
 
 
 
b2caedb
 
 
 
 
 
 
 
 
 
 
132e259
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b2caedb
 
 
132e259
 
 
 
b2caedb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
132e259
 
 
 
b2caedb
132e259
 
 
b2caedb
132e259
b2caedb
132e259
 
 
 
b2caedb
132e259
 
 
 
 
 
 
 
 
 
 
 
 
 
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>iOS 26 Concept</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">
    <script>
        tailwind.config = {
            theme: {
                extend: {
                    colors: {
                        'ios-gray': '#1C1C1E',
                        'ios-dark': '#121212',
                        'ios-blue': '#0A84FF',
                        'ios-purple': '#BF5AF2',
                        'ios-green': '#30D158',
                        'ios-red': '#FF375F',
                        'ios-yellow': '#FFD60A',
                    }
                }
            }
        }
    </script>
    <style>
        @keyframes liquid-pulse {
            0% { transform: scale(1); opacity: 0.7; }
            50% { transform: scale(1.05); opacity: 0.9; }
            100% { transform: scale(1); opacity: 0.7; }
        }
        
        @keyframes liquid-move {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .liquid-bg {
            background: linear-gradient(135deg, #0A84FF, #BF5AF2, #30D158, #FFD60A);
            background-size: 400% 400%;
            animation: liquid-move 15s ease infinite;
            filter: url('#liquid-turbulence');
        }
        
        .icon-liquid {
            animation: liquid-pulse 3s ease-in-out infinite;
            transition: all 0.3s cubic-bezier(0.17, 0.67, 0.83, 0.67);
            box-shadow: 
                0 0 20px rgba(191, 90, 242, 0.3),
                0 0 40px rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(2px);
            -webkit-backdrop-filter: blur(2px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            will-change: transform, filter, box-shadow;
        }
        
        .icon-liquid:hover {
            transform: scale(1.05);
            box-shadow: 
                0 0 15px rgba(255, 255, 255, 0.3),
                0 0 30px rgba(191, 90, 242, 0.4);
        }
        
        .liquid-border {
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(28, 28, 30, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }
        
        .dock-icon {
            transition: all 0.3s ease;
        }
        
        .dock-icon:hover {
            transform: translateY(-10px) scale(1.15);
        }
        
        .status-bar {
            background: rgba(28, 28, 30, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }
        
        .app-icon {
            transition: all 0.2s ease;
        }
        
        .app-icon:active {
            transform: scale(0.95);
        }
        
        .droplet {
            position: absolute;
            width: 40px;
            height: 40px;
            border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
            background: rgba(255, 255, 255, 0.15);
            pointer-events: none;
            filter: blur(1px);
            box-shadow: 
                inset 10px -10px 30px rgba(255, 255, 255, 0.3),
                inset -10px 10px 30px rgba(255, 255, 255, 0.1),
                0 0 20px rgba(255, 255, 255, 0.2);
            transform: translateY(-20px) scale(0);
            opacity: 0;
            z-index: 10;
        }
        
        .droplet::before {
            content: '';
            position: absolute;
            top: 5px;
            left: 10px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.8);
            filter: blur(0.5px);
        }
        
        @keyframes droplet-fall {
            0% {
                transform: 
                    translateY(calc(-20px * var(--velocity, 1))) 
                    scale(calc(0.5 * var(--velocity, 1)));
                opacity: 0;
                filter: blur(calc(1px * var(--velocity, 1)));
            }
            20% {
                transform: 
                    translateY(calc(-30px * var(--velocity, 1))) 
                    scale(var(--velocity, 1));
                opacity: 1;
            }
            50% {
                filter: 
                    blur(calc(2px * var(--velocity, 1)))
                    drop-shadow(0 0 5px rgba(255,255,255,0.5));
            }
            80% {
                transform: 
                    translateY(0) 
                    scale(calc(0.8 + 0.2 * var(--velocity, 1)));
                opacity: 0.8;
            }
            100% {
                transform: 
                    translateY(calc(10px * var(--velocity, 1))) 
                    scale(0);
                opacity: 0;
            }
        }
        
        .home-indicator {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }
    </style>
    <svg width="0" height="0" style="position:absolute">
        <filter id="liquid-turbulence" x="0" y="0" width="100%" height="100%">
            <feTurbulence type="fractalNoise" baseFrequency="0.01 0.01" numOctaves="2" result="turbulence"/>
            <feDisplacementMap in2="turbulence" in="SourceGraphic" scale="5" xChannelSelector="R" yChannelSelector="B"/>
            <feComponentTransfer>
                <feFuncR type="linear" slope="1.2" intercept="-0.1"/>
                <feFuncG type="linear" slope="1.0" intercept="0"/>
                <feFuncB type="linear" slope="0.8" intercept="0.1"/>
            </feComponentTransfer>
        </filter>
    </svg>
</head>
<body class="bg-ios-dark text-white flex justify-center items-center min-h-screen overflow-hidden">
    <!-- iPhone Frame -->
    <div class="relative w-[390px] h-[844px] rounded-[60px] overflow-hidden border-[12px] border-black shadow-2xl">
        <!-- Liquid Background -->
        <div class="absolute inset-0 liquid-bg"></div>
        
        <!-- Screen Content -->
        <div class="absolute inset-0 flex flex-col">
            <!-- Status Bar -->
            <div class="status-bar pt-8 px-6 pb-3 flex justify-between items-center text-sm z-10">
                <div>9:41</div>
                <div class="flex items-center gap-2">
                    <i class="fas fa-signal"></i>
                    <i class="fas fa-wifi"></i>
                    <i class="fas fa-battery-full"></i>
                </div>
            </div>
            
            <!-- App Grid -->
            <div class="flex-1 grid grid-cols-4 gap-6 p-6 mt-4 relative">
                <!-- App Icons -->
                <div class="app-icon relative flex flex-col items-center" onclick="createLiquidWave(event)">
                    <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center mb-2">
                        <i class="fas fa-message text-2xl text-white"></i>
                    </div>
                    <span class="text-xs">Messages</span>
                </div>
                
                <div class="app-icon relative flex flex-col items-center" onclick="createLiquidWave(event)">
                    <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center mb-2">
                        <i class="fas fa-phone text-2xl text-white"></i>
                    </div>
                    <span class="text-xs">Phone</span>
                </div>
                
                <div class="app-icon relative flex flex-col items-center" onclick="createLiquidWave(event)">
                    <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center mb-2">
                        <i class="fas fa-camera text-2xl text-white"></i>
                    </div>
                    <span class="text-xs">Camera</span>
                </div>
                
                <div class="app-icon relative flex flex-col items-center" onclick="createLiquidWave(event)">
                    <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center mb-2">
                        <i class="fas fa-safari text-2xl text-white"></i>
                    </div>
                    <span class="text-xs">Safari</span>
                </div>
                
                <div class="app-icon relative flex flex-col items-center" onclick="createLiquidWave(event)">
                    <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center mb-2">
                        <i class="fas fa-music text-2xl text-white"></i>
                    </div>
                    <span class="text-xs">Music</span>
                </div>
                
                <div class="app-icon relative flex flex-col items-center" onclick="createLiquidWave(event)">
                    <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center mb-2">
                        <i class="fas fa-map text-2xl text-white"></i>
                    </div>
                    <span class="text-xs">Maps</span>
                </div>
                
                <div class="app-icon relative flex flex-col items-center" onclick="createLiquidWave(event)">
                    <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center mb-2">
                        <i class="fas fa-cloud text-2xl text-white"></i>
                    </div>
                    <span class="text-xs">iCloud</span>
                </div>
                
                <div class="app-icon relative flex flex-col items-center" onclick="createLiquidWave(event)">
                    <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center mb-2">
                        <i class="fas fa-wallet text-2xl text-white"></i>
                    </div>
                    <span class="text-xs">Wallet</span>
                </div>
                
                <div class="app-icon relative flex flex-col items-center" onclick="createLiquidWave(event)">
                    <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center mb-2">
                        <i class="fas fa-settings text-2xl text-white"></i>
                    </div>
                    <span class="text-xs">Settings</span>
                </div>
                
                <div class="app-icon relative flex flex-col items-center" onclick="createLiquidWave(event)">
                    <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center mb-2">
                        <i class="fas fa-photo-film text-2xl text-white"></i>
                    </div>
                    <span class="text-xs">Photos</span>
                </div>
                
                <div class="app-icon relative flex flex-col items-center" onclick="createLiquidWave(event)">
                    <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center mb-2">
                        <i class="fas fa-calendar text-2xl text-white"></i>
                    </div>
                    <span class="text-xs">Calendar</span>
                </div>
                
                <div class="app-icon relative flex flex-col items-center" onclick="createLiquidWave(event)">
                    <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center mb-2">
                        <i class="fas fa-weather-sunny text-2xl text-white"></i>
                    </div>
                    <span class="text-xs">Weather</span>
                </div>
            </div>
            
            <!-- Dock -->
            <div class="liquid-border mx-6 mb-4 rounded-3xl p-3 flex justify-center gap-8">
                <div class="dock-icon flex flex-col items-center" onclick="createLiquidWave(event)">
                    <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center">
                        <i class="fas fa-phone text-2xl text-white"></i>
                    </div>
                </div>
                
                <div class="dock-icon flex flex-col items-center" onclick="createLiquidWave(event)">
                    <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center">
                        <i class="fas fa-message text-2xl text-white"></i>
                    </div>
                </div>
                
                <div class="dock-icon flex flex-col items-center" onclick="createLiquidWave(event)">
                    <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center">
                        <i class="fas fa-safari text-2xl text-white"></i>
                    </div>
                </div>
                
                <div class="dock-icon flex flex-col items-center" onclick="createLiquidWave(event)">
                    <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center">
                        <i class="fas fa-music text-2xl text-white"></i>
                    </div>
                </div>
            </div>
            
            <!-- Home Indicator -->
            <div class="flex justify-center mb-4">
                <div class="home-indicator w-32 h-1 rounded-full"></div>
            </div>
        </div>
        
        <!-- Notch -->
        <div class="absolute top-0 left-1/2 transform -translate-x-1/2 w-1/3 h-8 bg-black rounded-b-2xl flex justify-center items-center pt-1">
            <div class="w-4 h-4 rounded-full bg-red-500"></div>
            <div class="absolute inset-0 flex justify-center pt-1">
                <div class="w-10 h-4 bg-black rounded-b-lg"></div>
            </div>
        </div>
    </div>
    
    <script>
        let lastTouchTime = 0;
        let lastTouchY = 0;
        
        function createLiquidWave(event) {
            const icon = event.currentTarget.querySelector('.icon-liquid');
            const rect = icon.getBoundingClientRect();
            
            // Calculate interaction velocity
            const now = Date.now();
            let velocity = 0;
            if (event.type === 'touchmove') {
                const touchY = event.touches[0].clientY;
                velocity = Math.abs(touchY - lastTouchY) / (now - lastTouchTime) * 1000;
                lastTouchY = touchY;
            }
            lastTouchTime = now;
            
            // Adjust effects based on velocity
            const aberrationIntensity = Math.min(0.8, Math.max(0.2, velocity / 200));
            const scaleFactor = 1 + (velocity > 120 ? 0.15 : 0.05);
            
            // Create chromatic aberration effect
            icon.style.filter = `
                drop-shadow(${aberrationIntensity}px 0 1px rgba(255,0,0,0.7))
                drop-shadow(${-aberrationIntensity}px 0 1px rgba(0,0,255,0.7))
            `;
            
            // Trigger haptic feedback if available
            if ('vibrate' in navigator) {
                navigator.vibrate(velocity > 120 ? 30 : 10);
            }
            
            // Create droplet with physics
            const droplet = document.createElement('div');
            droplet.classList.add('droplet');
            droplet.style.left = `${rect.left + rect.width/2 - 20}px`;
            droplet.style.top = `${rect.top}px`;
            droplet.style.setProperty('--velocity', Math.min(1, velocity/200));
            
            document.body.appendChild(droplet);
            
            // Animate with physics
            setTimeout(() => {
                droplet.style.animation = `droplet-fall ${0.8 - Math.min(0.3, velocity/1000)}s ease-out forwards`;
            }, 10);
            
            setTimeout(() => {
                droplet.remove();
                icon.style.filter = '';
            }, 800);
        }
        
        // Add liquid effect to all icons on page load
        document.addEventListener('DOMContentLoaded', function() {
            const icons = document.querySelectorAll('.icon-liquid');
            icons.forEach(icon => {
                const hue = Math.floor(Math.random() * 360);
                icon.style.backgroundColor = `hsla(${hue}, 80%, 60%, 0.7)`;
            });
        });
    </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=ccmk/deepos26" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>