ccmk commited on
Commit
132e259
·
verified ·
1 Parent(s): a93854d

The liquid effect is not like this. It should be a completely new effect. It might not be found in C, S vs., or you may need to design it specifically. It is different from the glass effect. Dislike the liquid; that means it is pure with some light effect in real-time, simulating a liquid like a drop of water in a circle or in other shapes, just above that icon. It is different from the glass effect or other similar things. You can design it specifically. - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +323 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Deepos26
3
- emoji: 📚
4
- colorFrom: indigo
5
- colorTo: pink
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: deepos26
3
+ emoji: 🐳
4
+ colorFrom: pink
5
+ colorTo: yellow
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,323 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>iOS 26 Concept</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <script>
10
+ tailwind.config = {
11
+ theme: {
12
+ extend: {
13
+ colors: {
14
+ 'ios-gray': '#1C1C1E',
15
+ 'ios-dark': '#121212',
16
+ 'ios-blue': '#0A84FF',
17
+ 'ios-purple': '#BF5AF2',
18
+ 'ios-green': '#30D158',
19
+ 'ios-red': '#FF375F',
20
+ 'ios-yellow': '#FFD60A',
21
+ }
22
+ }
23
+ }
24
+ }
25
+ </script>
26
+ <style>
27
+ @keyframes liquid-pulse {
28
+ 0% { transform: scale(1); opacity: 0.7; }
29
+ 50% { transform: scale(1.05); opacity: 0.9; }
30
+ 100% { transform: scale(1); opacity: 0.7; }
31
+ }
32
+
33
+ @keyframes liquid-move {
34
+ 0% { background-position: 0% 50%; }
35
+ 50% { background-position: 100% 50%; }
36
+ 100% { background-position: 0% 50%; }
37
+ }
38
+
39
+ .liquid-bg {
40
+ background: linear-gradient(135deg, #0A84FF, #BF5AF2, #30D158, #FFD60A);
41
+ background-size: 400% 400%;
42
+ animation: liquid-move 15s ease infinite;
43
+ }
44
+
45
+ .icon-liquid {
46
+ animation: liquid-pulse 3s ease-in-out infinite;
47
+ transition: all 0.3s ease;
48
+ box-shadow: 0 0 20px rgba(191, 90, 242, 0.3);
49
+ }
50
+
51
+ .icon-liquid:hover {
52
+ transform: scale(1.05);
53
+ box-shadow:
54
+ 0 0 15px rgba(255, 255, 255, 0.3),
55
+ 0 0 30px rgba(191, 90, 242, 0.4);
56
+ }
57
+
58
+ .liquid-border {
59
+ border: 1px solid rgba(255, 255, 255, 0.1);
60
+ background: rgba(28, 28, 30, 0.7);
61
+ backdrop-filter: blur(20px);
62
+ -webkit-backdrop-filter: blur(20px);
63
+ }
64
+
65
+ .dock-icon {
66
+ transition: all 0.3s ease;
67
+ }
68
+
69
+ .dock-icon:hover {
70
+ transform: translateY(-10px) scale(1.15);
71
+ }
72
+
73
+ .status-bar {
74
+ background: rgba(28, 28, 30, 0.7);
75
+ backdrop-filter: blur(20px);
76
+ -webkit-backdrop-filter: blur(20px);
77
+ }
78
+
79
+ .app-icon {
80
+ transition: all 0.2s ease;
81
+ }
82
+
83
+ .app-icon:active {
84
+ transform: scale(0.95);
85
+ }
86
+
87
+ .droplet {
88
+ position: absolute;
89
+ width: 40px;
90
+ height: 40px;
91
+ border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
92
+ background: rgba(255, 255, 255, 0.15);
93
+ pointer-events: none;
94
+ filter: blur(1px);
95
+ box-shadow:
96
+ inset 10px -10px 30px rgba(255, 255, 255, 0.3),
97
+ inset -10px 10px 30px rgba(255, 255, 255, 0.1),
98
+ 0 0 20px rgba(255, 255, 255, 0.2);
99
+ transform: translateY(-20px) scale(0);
100
+ opacity: 0;
101
+ z-index: 10;
102
+ }
103
+
104
+ .droplet::before {
105
+ content: '';
106
+ position: absolute;
107
+ top: 5px;
108
+ left: 10px;
109
+ width: 10px;
110
+ height: 10px;
111
+ border-radius: 50%;
112
+ background: rgba(255, 255, 255, 0.8);
113
+ filter: blur(0.5px);
114
+ }
115
+
116
+ @keyframes droplet-fall {
117
+ 0% {
118
+ transform: translateY(-20px) scale(0);
119
+ opacity: 0;
120
+ }
121
+ 20% {
122
+ transform: translateY(-30px) scale(1);
123
+ opacity: 1;
124
+ }
125
+ 80% {
126
+ transform: translateY(0) scale(0.8);
127
+ opacity: 0.8;
128
+ }
129
+ 100% {
130
+ transform: translateY(10px) scale(0);
131
+ opacity: 0;
132
+ }
133
+ }
134
+
135
+ .home-indicator {
136
+ background: rgba(255, 255, 255, 0.8);
137
+ backdrop-filter: blur(5px);
138
+ -webkit-backdrop-filter: blur(5px);
139
+ }
140
+ </style>
141
+ </head>
142
+ <body class="bg-ios-dark text-white flex justify-center items-center min-h-screen overflow-hidden">
143
+ <!-- iPhone Frame -->
144
+ <div class="relative w-[390px] h-[844px] rounded-[60px] overflow-hidden border-[12px] border-black shadow-2xl">
145
+ <!-- Liquid Background -->
146
+ <div class="absolute inset-0 liquid-bg"></div>
147
+
148
+ <!-- Screen Content -->
149
+ <div class="absolute inset-0 flex flex-col">
150
+ <!-- Status Bar -->
151
+ <div class="status-bar pt-8 px-6 pb-3 flex justify-between items-center text-sm z-10">
152
+ <div>9:41</div>
153
+ <div class="flex items-center gap-2">
154
+ <i class="fas fa-signal"></i>
155
+ <i class="fas fa-wifi"></i>
156
+ <i class="fas fa-battery-full"></i>
157
+ </div>
158
+ </div>
159
+
160
+ <!-- App Grid -->
161
+ <div class="flex-1 grid grid-cols-4 gap-6 p-6 mt-4 relative">
162
+ <!-- App Icons -->
163
+ <div class="app-icon relative flex flex-col items-center" onclick="createLiquidWave(event)">
164
+ <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center mb-2">
165
+ <i class="fas fa-message text-2xl text-white"></i>
166
+ </div>
167
+ <span class="text-xs">Messages</span>
168
+ </div>
169
+
170
+ <div class="app-icon relative flex flex-col items-center" onclick="createLiquidWave(event)">
171
+ <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center mb-2">
172
+ <i class="fas fa-phone text-2xl text-white"></i>
173
+ </div>
174
+ <span class="text-xs">Phone</span>
175
+ </div>
176
+
177
+ <div class="app-icon relative flex flex-col items-center" onclick="createLiquidWave(event)">
178
+ <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center mb-2">
179
+ <i class="fas fa-camera text-2xl text-white"></i>
180
+ </div>
181
+ <span class="text-xs">Camera</span>
182
+ </div>
183
+
184
+ <div class="app-icon relative flex flex-col items-center" onclick="createLiquidWave(event)">
185
+ <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center mb-2">
186
+ <i class="fas fa-safari text-2xl text-white"></i>
187
+ </div>
188
+ <span class="text-xs">Safari</span>
189
+ </div>
190
+
191
+ <div class="app-icon relative flex flex-col items-center" onclick="createLiquidWave(event)">
192
+ <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center mb-2">
193
+ <i class="fas fa-music text-2xl text-white"></i>
194
+ </div>
195
+ <span class="text-xs">Music</span>
196
+ </div>
197
+
198
+ <div class="app-icon relative flex flex-col items-center" onclick="createLiquidWave(event)">
199
+ <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center mb-2">
200
+ <i class="fas fa-map text-2xl text-white"></i>
201
+ </div>
202
+ <span class="text-xs">Maps</span>
203
+ </div>
204
+
205
+ <div class="app-icon relative flex flex-col items-center" onclick="createLiquidWave(event)">
206
+ <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center mb-2">
207
+ <i class="fas fa-cloud text-2xl text-white"></i>
208
+ </div>
209
+ <span class="text-xs">iCloud</span>
210
+ </div>
211
+
212
+ <div class="app-icon relative flex flex-col items-center" onclick="createLiquidWave(event)">
213
+ <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center mb-2">
214
+ <i class="fas fa-wallet text-2xl text-white"></i>
215
+ </div>
216
+ <span class="text-xs">Wallet</span>
217
+ </div>
218
+
219
+ <div class="app-icon relative flex flex-col items-center" onclick="createLiquidWave(event)">
220
+ <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center mb-2">
221
+ <i class="fas fa-settings text-2xl text-white"></i>
222
+ </div>
223
+ <span class="text-xs">Settings</span>
224
+ </div>
225
+
226
+ <div class="app-icon relative flex flex-col items-center" onclick="createLiquidWave(event)">
227
+ <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center mb-2">
228
+ <i class="fas fa-photo-film text-2xl text-white"></i>
229
+ </div>
230
+ <span class="text-xs">Photos</span>
231
+ </div>
232
+
233
+ <div class="app-icon relative flex flex-col items-center" onclick="createLiquidWave(event)">
234
+ <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center mb-2">
235
+ <i class="fas fa-calendar text-2xl text-white"></i>
236
+ </div>
237
+ <span class="text-xs">Calendar</span>
238
+ </div>
239
+
240
+ <div class="app-icon relative flex flex-col items-center" onclick="createLiquidWave(event)">
241
+ <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center mb-2">
242
+ <i class="fas fa-weather-sunny text-2xl text-white"></i>
243
+ </div>
244
+ <span class="text-xs">Weather</span>
245
+ </div>
246
+ </div>
247
+
248
+ <!-- Dock -->
249
+ <div class="liquid-border mx-6 mb-4 rounded-3xl p-3 flex justify-center gap-8">
250
+ <div class="dock-icon flex flex-col items-center" onclick="createLiquidWave(event)">
251
+ <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center">
252
+ <i class="fas fa-phone text-2xl text-white"></i>
253
+ </div>
254
+ </div>
255
+
256
+ <div class="dock-icon flex flex-col items-center" onclick="createLiquidWave(event)">
257
+ <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center">
258
+ <i class="fas fa-message text-2xl text-white"></i>
259
+ </div>
260
+ </div>
261
+
262
+ <div class="dock-icon flex flex-col items-center" onclick="createLiquidWave(event)">
263
+ <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center">
264
+ <i class="fas fa-safari text-2xl text-white"></i>
265
+ </div>
266
+ </div>
267
+
268
+ <div class="dock-icon flex flex-col items-center" onclick="createLiquidWave(event)">
269
+ <div class="icon-liquid w-16 h-16 rounded-2xl flex items-center justify-center">
270
+ <i class="fas fa-music text-2xl text-white"></i>
271
+ </div>
272
+ </div>
273
+ </div>
274
+
275
+ <!-- Home Indicator -->
276
+ <div class="flex justify-center mb-4">
277
+ <div class="home-indicator w-32 h-1 rounded-full"></div>
278
+ </div>
279
+ </div>
280
+
281
+ <!-- Notch -->
282
+ <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">
283
+ <div class="w-4 h-4 rounded-full bg-red-500"></div>
284
+ <div class="absolute inset-0 flex justify-center pt-1">
285
+ <div class="w-10 h-4 bg-black rounded-b-lg"></div>
286
+ </div>
287
+ </div>
288
+ </div>
289
+
290
+ <script>
291
+ function createLiquidWave(event) {
292
+ const icon = event.currentTarget.querySelector('.icon-liquid');
293
+ const rect = icon.getBoundingClientRect();
294
+
295
+ const droplet = document.createElement('div');
296
+ droplet.classList.add('droplet');
297
+ droplet.style.left = `${rect.left + rect.width/2 - 20}px`;
298
+ droplet.style.top = `${rect.top}px`;
299
+
300
+ document.body.appendChild(droplet);
301
+
302
+ // Trigger animation
303
+ setTimeout(() => {
304
+ droplet.style.animation = 'droplet-fall 0.8s ease-out forwards';
305
+ }, 10);
306
+
307
+ // Remove after animation completes
308
+ setTimeout(() => {
309
+ droplet.remove();
310
+ }, 800);
311
+ }
312
+
313
+ // Add liquid effect to all icons on page load
314
+ document.addEventListener('DOMContentLoaded', function() {
315
+ const icons = document.querySelectorAll('.icon-liquid');
316
+ icons.forEach(icon => {
317
+ const hue = Math.floor(Math.random() * 360);
318
+ icon.style.backgroundColor = `hsla(${hue}, 80%, 60%, 0.7)`;
319
+ });
320
+ });
321
+ </script>
322
+ <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>
323
+ </html>