-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject_gallery.html
More file actions
372 lines (333 loc) · 15 KB
/
Copy pathproject_gallery.html
File metadata and controls
372 lines (333 loc) · 15 KB
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
<!DOCTYPE html>
<html lang="he">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>גלריית הפרויקט - TrendOS</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
direction: rtl;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
padding: 20px;
}
.container {
max-width: 1200px;
margin: 0 auto;
background: rgba(255, 255, 255, 0.95);
border-radius: 20px;
padding: 30px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #333;
margin-bottom: 40px;
font-size: 2.5em;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.project-section {
margin-bottom: 40px;
background: white;
border-radius: 15px;
padding: 25px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
border-right: 5px solid #667eea;
}
.project-section h2 {
color: #667eea;
margin-bottom: 20px;
font-size: 1.8em;
border-bottom: 2px solid #f0f0f0;
padding-bottom: 10px;
}
.files-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 15px;
margin-top: 20px;
}
.file-card {
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
border-radius: 10px;
padding: 15px;
border: 1px solid #e0e0e0;
transition: all 0.3s ease;
cursor: pointer;
user-select: none;
}
.file-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
background: linear-gradient(135deg, #e8f4f8 0%, #d1e7dd 100%);
}
.file-card:active {
transform: translateY(-2px);
background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
}
.file-card.html {
border-right: 4px solid #e74c3c;
}
.file-card.css {
border-right: 4px solid #3498db;
}
.file-card.js {
border-right: 4px solid #f1c40f;
}
.file-card.py {
border-right: 4px solid #2ecc71;
}
.file-card.md {
border-right: 4px solid #9b59b6;
}
.file-name {
font-weight: bold;
color: #2c3e50;
margin-bottom: 8px;
font-size: 1.1em;
}
.file-description {
color: #7f8c8d;
font-size: 0.9em;
line-height: 1.4;
}
.folder-icon {
color: #f39c12;
margin-left: 5px;
}
.file-icon {
margin-left: 8px;
}
.recommendations {
background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
border-radius: 15px;
padding: 25px;
margin-top: 30px;
border-right: 5px solid #ff6b6b;
}
.recommendations h3 {
color: #c0392b;
margin-bottom: 15px;
font-size: 1.5em;
}
.recommendation-item {
background: white;
border-radius: 10px;
padding: 15px;
margin: 10px 0;
border-right: 3px solid #ff6b6b;
}
.folder-structure {
background: #f8f9fa;
border-radius: 10px;
padding: 20px;
margin: 20px 0;
border: 1px solid #e9ecef;
font-family: 'Courier New', monospace;
direction: ltr;
}
.action-buttons {
display: flex;
gap: 15px;
margin-top: 30px;
justify-content: center;
flex-wrap: wrap;
}
.btn {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border: none;
padding: 12px 25px;
border-radius: 25px;
cursor: pointer;
font-size: 1em;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}
</style>
</head>
<body>
<div class="container">
<h1>🎨 גלריית הפרויקט - TrendOS ✅ מאורגן!</h1>
<div style="background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%); border: 2px solid #28a745; border-radius: 15px; padding: 20px; margin-bottom: 30px; text-align: center;">
<h3 style="color: #155724; margin-bottom: 10px;">🎉 הפרויקט אורגן בהצלחה!</h3>
<p style="color: #155724; margin: 0;">כל הקבצים מסודרים בתיקייה "TrendOS_Organized" והגרסאות הישנות בתיקיית "archive"</p>
</div>
<div class="project-section">
<h2>📁 קבצים עיקריים בתיקייה הראשית</h2>
<div class="files-grid">
<div class="file-card html" onclick="window.open('public/index.html', '_blank')">
<div class="file-name">📄 index.html</div>
<div class="file-description">עמוד זיהוי משתמש - טופס לבחירת מקצוע, מטרה ופלטפורמה</div>
</div>
<div class="file-card html" onclick="window.open('public/trendos.html', '_blank')">
<div class="file-name">📄 trendos.html</div>
<div class="file-description">עמוד ברוכים הבאים המציג פרופיל המשתמש</div>
</div>
<div class="file-card html" onclick="window.open('public/dashboard.html', '_blank')">
<div class="file-name">📄 dashboard.html</div>
<div class="file-description">לוח בקרה ראשי למערכת הטרנדים</div>
</div>
<div class="file-card html" onclick="window.open('public/colors_drag.html', '_blank')">
<div class="file-name">📄 colors_drag.html</div>
<div class="file-description">ממשק גרירה לצבעים וטרנדים</div>
</div>
<div class="file-card html" onclick="window.open('public/generate_script.html', '_blank')">
<div class="file-name">📄 generate_script.html</div>
<div class="file-description">מחולל סקריפטים לפלטפורמות שונות</div>
</div>
<div class="file-card js">
<div class="file-name">⚡ main.js</div>
<div class="file-description">קובץ JavaScript ראשי לפונקציונליות האתר</div>
</div>
<div class="file-card css">
<div class="file-name">🎨 styles/style.css</div>
<div class="file-description">עיצוב ראשי של האתר</div>
</div>
<div class="file-card md">
<div class="file-name">📋 TrendOS_MasterPlan.md</div>
<div class="file-description">תכנית אב למערכת TrendOS - מפרט מלא ופיצ'רים</div>
</div>
</div>
</div>
<div class="project-section">
<h2>🗂️ תיקיות ומבנה הפרויקט</h2>
<div class="files-grid">
<div class="file-card">
<div class="file-name">📁 reports/</div>
<div class="file-description">דוחות יומיים - report_20250408.html, report_20250409.html</div>
</div>
<div class="file-card">
<div class="file-name">📁 scripts/</div>
<div class="file-description">סקריפטים - generate_report.py, script.js</div>
</div>
<div class="file-card">
<div class="file-name">📁 stories/</div>
<div class="file-description">סיפורים יומיים - story_of_the_day.txt</div>
</div>
<div class="file-card">
<div class="file-name">📁 tips/</div>
<div class="file-description">טיפים יומיים - tip_of_the_day.txt</div>
</div>
<div class="file-card">
<div class="file-name">📁 templates/</div>
<div class="file-description">תבניות HTML - daily_report_template.html</div>
</div>
<div class="file-card">
<div class="file-name">📁 images/</div>
<div class="file-description">תמונות ואייקונים - icon.jpg</div>
</div>
</div>
</div>
<div class="project-section">
<h2>🏗️ גרסאות הפרויקט</h2>
<div class="files-grid">
<div class="file-card">
<div class="file-name">📁 TrendOS_Pro/</div>
<div class="file-description">גרסה מתקדמת עם מבנה src/ מסודר וקבצי translations</div>
</div>
<div class="file-card">
<div class="file-name">📁 TRENDTIP/</div>
<div class="file-description">גרסה עם תרגומים מורחבים וקבצים נוספים</div>
</div>
<div class="file-card">
<div class="file-name">📁 אתר חדש/</div>
<div class="file-description">גרסת עבודה נוספת עם קבצים דומים</div>
</div>
<div class="file-card">
<div class="file-name">📁 ישן/</div>
<div class="file-description">גרסאות ישנות וגיבויים</div>
</div>
</div>
</div>
<div class="recommendations">
<h3>💡 המלצות לארגון הפרויקט</h3>
<div class="recommendation-item">
<strong>1. איחוד התיקיות:</strong> יש לך 4-5 גרסאות דומות. כדאי לבחור בגרסה אחת (ההמלצה: TrendOS_Organized) ולהעביר אליה את כל הקבצים החשובים.
</div>
<div class="recommendation-item">
<strong>2. מבנה מומלץ:</strong>
<div class="folder-structure">
TrendOS_Organized/<br>
├── public/<br>
│ ├── index.html<br>
│ ├── dashboard.html<br>
│ ├── colors_drag.html<br>
│ └── generate_script.html<br>
├── src/<br>
│ ├── css/style.css<br>
│ ├── js/main.js<br>
│ └── images/icon.jpg<br>
├── data/<br>
│ ├── reports/<br>
│ ├── stories/<br>
│ ├── tips/<br>
│ └── templates/<br>
├── scripts/<br>
│ ├── generate_report.py<br>
│ └── script.js<br>
├── archive/<br>
│ ├── TrendOS_Pro/<br>
│ ├── TRENDTIP/<br>
│ └── אתר חדש/<br>
└── TrendOS_MasterPlan.md
</div>
</div>
<div class="recommendation-item">
<strong>3. ארגון הושלם:</strong> כל הקבצים מורגנים בתיקייה "TrendOS_Organized" והגרסאות הישנות הועברו לתיקיית "archive".
</div>
<div class="recommendation-item">
<strong>4. גלריה אינטראקטיבית:</strong> ליצור עמוד גלריה שמציג את כל הפיצ'רים עם צילומי מסך ודוגמאות.
</div>
</div>
<div class="action-buttons">
<a href="public/index.html" class="btn" target="_blank">🚀 התחל מהעמוד הראשי</a>
<a href="public/dashboard.html" class="btn" target="_blank">📊 לוח הבקרה</a>
<a href="public/colors_drag.html" class="btn" target="_blank">🎨 גרירת צבעים</a>
<a href="public/generate_script.html" class="btn" target="_blank">🔧 מחולל סקריפטים</a>
<a href="public/trendos.html" class="btn" target="_blank">📋 TrendOS</a>
<button class="btn" onclick="showSuccess()">✅ הפרויקט מאורגן!</button>
</div>
</div>
<script>
function showSuccess() {
alert('מעולה! הפרויקט מאורגן בהצלחה! 🎉\n\nכל הקבצים נמצאים בתיקייה TrendOS_Organized\nהגרסאות הישנות בתיקיית archive\n\nכל הכפתורים כעת עובדים ופותחים את הקבצים הנכונים!');
}
// הוספת אנימציה לכרטיסיות
document.querySelectorAll('.file-card').forEach(card => {
card.addEventListener('click', function() {
// אפקט לחיצה
this.style.transform = 'scale(1.02)';
setTimeout(() => {
this.style.transform = 'translateY(-5px)';
}, 150);
// הוספת אפקט ברק
this.style.boxShadow = '0 15px 30px rgba(102, 126, 234, 0.3)';
setTimeout(() => {
this.style.boxShadow = '0 15px 30px rgba(0, 0, 0, 0.1)';
}, 300);
});
});
// אנימציה לכפתורים
document.querySelectorAll('.btn').forEach(btn => {
btn.addEventListener('click', function() {
this.style.transform = 'scale(0.95)';
setTimeout(() => {
this.style.transform = 'translateY(-2px)';
}, 100);
});
});
</script>
</body>
</html>