ANTIMOLL commited on
Commit
73c829d
·
verified ·
1 Parent(s): 0dde7af

Add 2 files

Browse files
Files changed (2) hide show
  1. index.html +350 -80
  2. prompts.txt +1 -0
index.html CHANGED
@@ -1,167 +1,437 @@
1
  <!DOCTYPE html>
2
- <!-- saved from url=(0079)file:///C:/Users/Zver/Downloads/cccp/deepseek_html_20250425_ad6124.html#catalog -->
3
- <html lang="ru"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4
-
 
5
  <title>СССР Очки - Ретро Линзы 60-х</title>
6
- <link href="./СССР Очки - Ретро Линзы 60-х_files/css2" rel="stylesheet">
 
 
7
  <style>
8
- /* Стили в духе советского модерна */
9
  :root {
10
  --red: #CC2222;
11
  --gold: #FFD700;
12
  --vintage: #2F2F2F;
 
13
  }
14
 
15
  body {
16
  font-family: 'Roboto', sans-serif;
17
- background: url('https://img.freepik.com/free-photo/old-brown-paper-texture-background_1373-431.jpg');
18
  margin: 0;
 
 
 
 
 
 
 
 
 
 
 
 
19
  }
20
 
21
  .header {
22
- background: linear-gradient(90deg, var(--red) 0%, var(--vintage) 100%);
23
- padding: 20px;
24
  text-align: center;
25
  border-bottom: 3px solid var(--gold);
 
 
26
  }
27
 
28
- .header h1 {
29
- font-family: 'Playfair Display', serif;
30
- color: white;
31
- font-size: 2.5em;
32
- text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
 
 
 
 
33
  }
34
 
35
  .hero {
36
- padding: 100px 20px;
 
37
  text-align: center;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38
  }
39
 
40
  .cta-button {
41
  background: var(--gold);
42
  color: var(--red) !important;
43
- padding: 15px 40px;
44
  border: none;
45
- font-size: 1.2em;
 
46
  cursor: pointer;
47
- transition: 0.3s;
48
  text-decoration: none;
49
  display: inline-block;
50
  margin-top: 20px;
 
 
51
  }
52
 
53
  .cta-button:hover {
54
- transform: scale(1.1);
55
- box-shadow: 0 0 15px var(--gold);
56
- }
57
-
58
- .features {
59
- display: grid;
60
- grid-template-columns: repeat(3, 1fr);
61
- gap: 30px;
62
- padding: 50px 20px;
63
- background: rgba(255,255,255,0.9);
64
  }
65
 
66
  .product-card {
67
  border: 2px solid var(--red);
68
  padding: 20px;
69
  text-align: center;
70
- transition: 0.3s;
 
 
 
71
  }
72
 
73
  .product-card:hover {
74
  transform: translateY(-10px);
75
- }
76
-
77
- .gallery {
78
- display: grid;
79
- grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
80
- gap: 20px;
81
- padding: 50px 20px;
82
  }
83
 
84
  .gallery img {
85
  width: 100%;
86
  height: 250px;
87
  object-fit: cover;
88
- filter: sepia(0.5);
89
  border: 3px solid var(--gold);
 
 
 
 
 
 
 
90
  }
91
 
92
  .newsletter {
93
- background: var(--vintage);
94
- padding: 50px 20px;
95
  text-align: center;
96
  color: white;
 
 
 
 
 
 
 
 
 
 
 
 
 
97
  }
98
 
99
  input[type="email"] {
100
- padding: 15px;
101
- width: 300px;
102
- margin: 20px;
 
103
  border: 2px solid var(--gold);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
104
  }
105
  </style>
106
  </head>
107
  <body>
108
  <header class="header">
109
- <h1>◭ СССР ОЧКИ 1960 ◮</h1>
 
 
 
 
110
  </header>
111
 
112
  <section class="hero">
113
- <h2 style="font-size: 2em; color: var(--red);">Смотри на мир через линзы истории</h2>
114
- <p style="font-size: 1.2em;">Оригинальные оправы из СССР с линзами ручной окраски</p>
115
- <a href="file:///C:/Users/Zver/Downloads/cccp/deepseek_html_20250425_ad6124.html#catalog" class="cta-button">ВЫБРАТЬ СВОЙ ЦВЕТ</a>
 
 
 
 
 
 
 
116
  </section>
117
 
118
- <section class="features">
119
- <div class="product-card">
120
- <h3>✓ Аутентичность</h3>
121
- <p>Оправы 1960-х годов с архивных складов</p>
122
- </div>
123
- <div class="product-card" style="transform: none;">
124
- <h3>✓ Индивидуальность</h3>
125
- <p>Ручная окраска линз пигментом "ОК"</p>
126
- </div>
127
- <div class="product-card" style="transform: none;">
128
- <h3>✓ Эксклюзив</h3>
129
- <p>Только 10 экземпляров каждой модели</p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
130
  </div>
131
  </section>
132
 
133
- <section id="catalog" style="padding: 50px 20px; text-align: center;">
134
- <h2>КАТАЛОГ</h2>
135
- <div class="gallery">
136
- <img src="./glasses1.jpg" alt="Очки модель &#39;Партийный&#39;">
137
- <img src="./glasses2.jpg" alt="Очки модель &#39;Космос&#39;">
138
- <img src="./glasses3.jpg" alt="Очки модель &#39;Стиляга&#39;">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
139
  </div>
140
  </section>
141
 
142
  <section class="newsletter">
143
- <h2>Получи скидку 15%</h2>
144
- <p>Подпишись на рассылку и получи гид по стилю 60-х</p>
145
- <input type="email" placeholder="Ваш e-mail">
146
- <button class="cta-button">ПОДПИСАТЬСЯ</button>
 
 
 
 
 
 
147
  </section>
148
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
149
  <script>
150
- // Простая анимация при скролле
151
- document.querySelectorAll('.product-card').forEach(card => {
152
- card.addEventListener('mouseover', () => {
153
- card.style.transform = 'rotate(-2deg)';
 
 
 
 
 
 
154
  });
155
-
156
- card.addEventListener('mouseout', () => {
157
- card.style.transform = 'none';
 
 
 
 
 
 
 
 
158
  });
159
- });
160
 
161
- // Обработка формы
162
- document.querySelector('button').addEventListener('click', () => {
163
- alert('Спасибо! Чек-лист "Стиль 60-х" уже летит к вам!');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
164
  });
165
- </script>
166
 
167
- <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=ANTIMOLL/ussroptical" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body></html>
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <!DOCTYPE html>
2
+ <html lang="ru">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
  <title>СССР Очки - Ретро Линзы 60-х</title>
7
+ <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Playfair+Display:wght@700&display=swap" rel="stylesheet">
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <script src="https://cdn.tailwindcss.com"></script>
10
  <style>
 
11
  :root {
12
  --red: #CC2222;
13
  --gold: #FFD700;
14
  --vintage: #2F2F2F;
15
+ --cream: #F5F5DC;
16
  }
17
 
18
  body {
19
  font-family: 'Roboto', sans-serif;
20
+ background-color: var(--cream);
21
  margin: 0;
22
+ color: #333;
23
+ }
24
+
25
+ .logo {
26
+ animation: pulse 3s infinite;
27
+ filter: drop-shadow(0 0 10px rgba(204, 34, 34, 0.7));
28
+ }
29
+
30
+ @keyframes pulse {
31
+ 0% { transform: scale(1); }
32
+ 50% { transform: scale(1.05); }
33
+ 100% { transform: scale(1); }
34
  }
35
 
36
  .header {
37
+ background: linear-gradient(135deg, var(--red) 0%, var(--vintage) 100%);
38
+ padding: 15px;
39
  text-align: center;
40
  border-bottom: 3px solid var(--gold);
41
+ position: relative;
42
+ overflow: hidden;
43
  }
44
 
45
+ .header::before {
46
+ content: "";
47
+ position: absolute;
48
+ top: 0;
49
+ left: 0;
50
+ right: 0;
51
+ bottom: 0;
52
+ background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><text x="10" y="50" font-family="Arial" font-size="20" fill="rgba(255,255,255,0.05)">◭◮</text></svg>');
53
+ opacity: 0.3;
54
  }
55
 
56
  .hero {
57
+ background: url('https://img.freepik.com/free-photo/vintage-grunge-paper-background_1048-10911.jpg') center/cover;
58
+ padding: 80px 20px;
59
  text-align: center;
60
+ position: relative;
61
+ }
62
+
63
+ .hero::after {
64
+ content: "";
65
+ position: absolute;
66
+ top: 0;
67
+ left: 0;
68
+ right: 0;
69
+ bottom: 0;
70
+ background: rgba(245, 245, 220, 0.7);
71
+ }
72
+
73
+ .hero-content {
74
+ position: relative;
75
+ z-index: 1;
76
  }
77
 
78
  .cta-button {
79
  background: var(--gold);
80
  color: var(--red) !important;
81
+ padding: 12px 30px;
82
  border: none;
83
+ font-size: 1.1em;
84
+ font-weight: bold;
85
  cursor: pointer;
86
+ transition: all 0.3s;
87
  text-decoration: none;
88
  display: inline-block;
89
  margin-top: 20px;
90
+ border-radius: 30px;
91
+ box-shadow: 0 4px 8px rgba(0,0,0,0.2);
92
  }
93
 
94
  .cta-button:hover {
95
+ transform: translateY(-3px);
96
+ box-shadow: 0 6px 12px rgba(0,0,0,0.3);
 
 
 
 
 
 
 
 
97
  }
98
 
99
  .product-card {
100
  border: 2px solid var(--red);
101
  padding: 20px;
102
  text-align: center;
103
+ transition: all 0.3s;
104
+ background: white;
105
+ border-radius: 8px;
106
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
107
  }
108
 
109
  .product-card:hover {
110
  transform: translateY(-10px);
111
+ box-shadow: 0 10px 20px rgba(0,0,0,0.2);
 
 
 
 
 
 
112
  }
113
 
114
  .gallery img {
115
  width: 100%;
116
  height: 250px;
117
  object-fit: cover;
118
+ filter: sepia(0.4) contrast(1.1);
119
  border: 3px solid var(--gold);
120
+ transition: all 0.3s;
121
+ border-radius: 4px;
122
+ }
123
+
124
+ .gallery img:hover {
125
+ filter: sepia(0.2) contrast(1.2);
126
+ transform: scale(1.02);
127
  }
128
 
129
  .newsletter {
130
+ background: linear-gradient(135deg, var(--vintage) 0%, #1a1a1a 100%);
131
+ padding: 40px 20px;
132
  text-align: center;
133
  color: white;
134
+ position: relative;
135
+ overflow: hidden;
136
+ }
137
+
138
+ .newsletter::before {
139
+ content: "";
140
+ position: absolute;
141
+ top: 0;
142
+ left: 0;
143
+ right: 0;
144
+ bottom: 0;
145
+ background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><text x="10" y="50" font-family="Arial" font-size="20" fill="rgba(255,215,0,0.05)">СССР</text></svg>');
146
+ opacity: 0.3;
147
  }
148
 
149
  input[type="email"] {
150
+ padding: 12px 15px;
151
+ width: 100%;
152
+ max-width: 400px;
153
+ margin: 15px auto;
154
  border: 2px solid var(--gold);
155
+ border-radius: 30px;
156
+ font-size: 1em;
157
+ outline: none;
158
+ }
159
+
160
+ .mobile-menu {
161
+ display: none;
162
+ position: fixed;
163
+ bottom: 20px;
164
+ left: 50%;
165
+ transform: translateX(-50%);
166
+ background: var(--red);
167
+ border-radius: 30px;
168
+ padding: 10px;
169
+ box-shadow: 0 4px 12px rgba(0,0,0,0.3);
170
+ z-index: 100;
171
+ }
172
+
173
+ .mobile-menu a {
174
+ color: white;
175
+ margin: 0 10px;
176
+ font-size: 1.2em;
177
+ }
178
+
179
+ @media (max-width: 768px) {
180
+ .header h1 {
181
+ font-size: 1.8em;
182
+ }
183
+
184
+ .hero {
185
+ padding: 60px 20px;
186
+ }
187
+
188
+ .features {
189
+ grid-template-columns: 1fr;
190
+ gap: 20px;
191
+ }
192
+
193
+ .mobile-menu {
194
+ display: flex;
195
+ }
196
+
197
+ .gallery {
198
+ grid-template-columns: 1fr;
199
+ }
200
+ }
201
+
202
+ @media (min-width: 769px) and (max-width: 1024px) {
203
+ .features {
204
+ grid-template-columns: repeat(2, 1fr);
205
+ }
206
+ }
207
+
208
+ .floating {
209
+ animation: floating 3s ease-in-out infinite;
210
+ }
211
+
212
+ @keyframes floating {
213
+ 0% { transform: translateY(0px); }
214
+ 50% { transform: translateY(-10px); }
215
+ 100% { transform: translateY(0px); }
216
+ }
217
+
218
+ .hammer-sickle {
219
+ font-size: 1.5em;
220
+ margin: 0 5px;
221
+ color: var(--gold);
222
  }
223
  </style>
224
  </head>
225
  <body>
226
  <header class="header">
227
+ <div class="logo">
228
+ <h1 class="text-3xl md:text-4xl font-bold font-serif text-white">
229
+ <span class="hammer-sickle">☭</span> СССР ОЧКИ 1960 <span class="hammer-sickle">☭</span>
230
+ </h1>
231
+ </div>
232
  </header>
233
 
234
  <section class="hero">
235
+ <div class="hero-content">
236
+ <h2 class="text-2xl md:text-3xl font-bold mb-4" style="color: var(--red);">Смотри на мир через линзы истории</h2>
237
+ <p class="text-lg md:text-xl mb-6">Оригинальные оправы из СССР с линзами ручной окраски</p>
238
+ <a href="#catalog" class="cta-button">
239
+ <i class="fas fa-glasses mr-2"></i> ВЫБРАТЬ СВОЙ ЦВЕТ
240
+ </a>
241
+ <div class="mt-8 floating">
242
+ <i class="fas fa-angle-double-down text-3xl text-red-600"></i>
243
+ </div>
244
+ </div>
245
  </section>
246
 
247
+ <section class="py-12 px-4 bg-white">
248
+ <div class="max-w-6xl mx-auto">
249
+ <h2 class="text-3xl font-bold text-center mb-10" style="color: var(--red);">
250
+ <i class="fas fa-star mr-2" style="color: var(--gold);"></i> Почему выбирают нас
251
+ </h2>
252
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
253
+ <div class="product-card">
254
+ <div class="text-4xl mb-4" style="color: var(--red);">
255
+ <i class="fas fa-certificate"></i>
256
+ </div>
257
+ <h3 class="text-xl font-bold mb-2">Аутентичность</h3>
258
+ <p class="text-gray-700">Оправы 1960-х годов с архивных складов</p>
259
+ </div>
260
+ <div class="product-card">
261
+ <div class="text-4xl mb-4" style="color: var(--red);">
262
+ <i class="fas fa-palette"></i>
263
+ </div>
264
+ <h3 class="text-xl font-bold mb-2">Индивидуальность</h3>
265
+ <p class="text-gray-700">Ручная окраска линз пигментом "ОК"</p>
266
+ </div>
267
+ <div class="product-card">
268
+ <div class="text-4xl mb-4" style="color: var(--red);">
269
+ <i class="fas fa-crown"></i>
270
+ </div>
271
+ <h3 class="text-xl font-bold mb-2">Эксклюзив</h3>
272
+ <p class="text-gray-700">Только 10 экземпляров каждой модели</p>
273
+ </div>
274
+ </div>
275
  </div>
276
  </section>
277
 
278
+ <section id="catalog" class="py-12 px-4 bg-gray-100">
279
+ <div class="max-w-6xl mx-auto">
280
+ <h2 class="text-3xl font-bold text-center mb-10" style="color: var(--red);">
281
+ <i class="fas fa-images mr-2" style="color: var(--gold);"></i> КАТАЛОГ
282
+ </h2>
283
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
284
+ <div class="group relative overflow-hidden rounded-lg">
285
+ <img src="https://i.imgur.com/JxQq3WZ.jpg" alt="Очки модель 'Партийный'" class="w-full h-64 md:h-80 object-cover">
286
+ <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 group-hover:opacity-100 transition-opacity duration-300">
287
+ <div class="text-center text-white p-4">
288
+ <h3 class="text-xl font-bold">"Партийный"</h3>
289
+ <p class="mt-2">Официальный стиль партийных работников</p>
290
+ <button class="mt-4 px-6 py-2 bg-red-600 text-white rounded-full">Подробнее</button>
291
+ </div>
292
+ </div>
293
+ </div>
294
+ <div class="group relative overflow-hidden rounded-lg">
295
+ <img src="https://i.imgur.com/8YtLQ9U.jpg" alt="Очки модель 'Космос'" class="w-full h-64 md:h-80 object-cover">
296
+ <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 group-hover:opacity-100 transition-opacity duration-300">
297
+ <div class="text-center text-white p-4">
298
+ <h3 class="text-xl font-bold">"Космос"</h3>
299
+ <p class="mt-2">Вдохновлено эпохой космических достижений</p>
300
+ <button class="mt-4 px-6 py-2 bg-red-600 text-white rounded-full">Подробнее</button>
301
+ </div>
302
+ </div>
303
+ </div>
304
+ <div class="group relative overflow-hidden rounded-lg">
305
+ <img src="https://i.imgur.com/9zXmPqk.jpg" alt="Очки модель 'Стиляга'" class="w-full h-64 md:h-80 object-cover">
306
+ <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 group-hover:opacity-100 transition-opacity duration-300">
307
+ <div class="text-center text-white p-4">
308
+ <h3 class="text-xl font-bold">"Стиляга"</h3>
309
+ <p class="mt-2">Яркий акцент для поклонников западной моды</p>
310
+ <button class="mt-4 px-6 py-2 bg-red-600 text-white rounded-full">Подробнее</button>
311
+ </div>
312
+ </div>
313
+ </div>
314
+ </div>
315
  </div>
316
  </section>
317
 
318
  <section class="newsletter">
319
+ <div class="max-w-4xl mx-auto relative z-10">
320
+ <h2 class="text-2xl md:text-3xl font-bold mb-4">Получи скидку 15%</h2>
321
+ <p class="text-lg mb-6">Подпишись на рассылку и получи гид по стилю 60-х</p>
322
+ <div class="flex flex-col md:flex-row items-center justify-center">
323
+ <input type="email" placeholder="Ваш e-mail" class="mb-4 md:mb-0 md:mr-4">
324
+ <button class="cta-button">
325
+ <i class="fas fa-envelope mr-2"></i> ПОДПИСАТЬСЯ
326
+ </button>
327
+ </div>
328
+ </div>
329
  </section>
330
 
331
+ <footer class="bg-gray-900 text-white py-8 px-4">
332
+ <div class="max-w-6xl mx-auto grid grid-cols-1 md:grid-cols-3 gap-8">
333
+ <div>
334
+ <h3 class="text-xl font-bold mb-4" style="color: var(--gold);">СССР Очки</h3>
335
+ <p>Возвращаем моду 60-х в современный мир</p>
336
+ <div class="mt-4 flex space-x-4">
337
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-vk fa-lg"></i></a>
338
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-telegram fa-lg"></i></a>
339
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram fa-lg"></i></a>
340
+ </div>
341
+ </div>
342
+ <div>
343
+ <h3 class="text-xl font-bold mb-4" style="color: var(--gold);">Контакты</h3>
344
+ <p><i class="fas fa-map-marker-alt mr-2"></i> Москва, ул. Арбат, 25</p>
345
+ <p class="mt-2"><i class="fas fa-phone mr-2"></i> +7 (495) 123-45-67</p>
346
+ <p class="mt-2"><i class="fas fa-envelope mr-2"></i> info@ussr-glasses.ru</p>
347
+ </div>
348
+ <div>
349
+ <h3 class="text-xl font-bold mb-4" style="color: var(--gold);">Часы работы</h3>
350
+ <p>Пн-Пт: 10:00 - 20:00</p>
351
+ <p class="mt-2">Сб-Вс: 11:00 - 18:00</p>
352
+ </div>
353
+ </div>
354
+ <div class="max-w-6xl mx-auto mt-8 pt-4 border-t border-gray-700 text-center text-gray-400">
355
+ <p>© 2023 СССР Очки. Все права защищены.</p>
356
+ </div>
357
+ </footer>
358
+
359
+ <div class="mobile-menu">
360
+ <a href="#"><i class="fas fa-home"></i></a>
361
+ <a href="#catalog"><i class="fas fa-glasses"></i></a>
362
+ <a href="#"><i class="fas fa-shopping-cart"></i></a>
363
+ <a href="#"><i class="fas fa-user"></i></a>
364
+ </div>
365
+
366
  <script>
367
+ // Анимация при скролле
368
+ document.addEventListener('DOMContentLoaded', function() {
369
+ // Плавная прокрутка
370
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
371
+ anchor.addEventListener('click', function(e) {
372
+ e.preventDefault();
373
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
374
+ behavior: 'smooth'
375
+ });
376
+ });
377
  });
378
+
379
+ // Анимация карточек
380
+ const cards = document.querySelectorAll('.product-card');
381
+ cards.forEach(card => {
382
+ card.addEventListener('mouseover', () => {
383
+ card.style.transform = 'rotate(-2deg)';
384
+ });
385
+
386
+ card.addEventListener('mouseout', () => {
387
+ card.style.transform = 'none';
388
+ });
389
  });
 
390
 
391
+ // Обработка формы
392
+ document.querySelector('.newsletter button').addEventListener('click', () => {
393
+ const email = document.querySelector('.newsletter input').value;
394
+ if(email.includes('@')) {
395
+ Swal.fire({
396
+ title: 'Спасибо!',
397
+ text: 'Чек-лист "Стиль 60-х" уже летит к вам!',
398
+ icon: 'success',
399
+ confirmButtonColor: '#CC2222'
400
+ });
401
+ } else {
402
+ Swal.fire({
403
+ title: 'Ошибка',
404
+ text: 'Пожалуйста, введите корректный email',
405
+ icon: 'error',
406
+ confirmButtonColor: '#CC2222'
407
+ });
408
+ }
409
+ });
410
+
411
+ // Анимация появления элементов при скролле
412
+ const observer = new IntersectionObserver((entries) => {
413
+ entries.forEach(entry => {
414
+ if(entry.isIntersecting) {
415
+ entry.target.classList.add('animate__animated', 'animate__fadeInUp');
416
+ }
417
+ });
418
+ }, { threshold: 0.1 });
419
+
420
+ document.querySelectorAll('.product-card, .gallery img, .newsletter').forEach(el => {
421
+ observer.observe(el);
422
+ });
423
  });
 
424
 
425
+ // Добавляем SweetAlert для красивых уведомлений
426
+ const SwalScript = document.createElement('script');
427
+ SwalScript.src = 'https://cdn.jsdelivr.net/npm/sweetalert2@11';
428
+ document.head.appendChild(SwalScript);
429
+
430
+ // Добавляем анимации
431
+ const animateCSS = document.createElement('link');
432
+ animateCSS.href = 'https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css';
433
+ animateCSS.rel = 'stylesheet';
434
+ document.head.appendChild(animateCSS);
435
+ </script>
436
+ <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=ANTIMOLL/ussroptical" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
437
+ </html>
prompts.txt CHANGED
@@ -0,0 +1 @@
 
 
1
+ сделай под мобильные устройства добавь еффектом логотип и измени дизайн