-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
182 lines (180 loc) · 7.22 KB
/
index.html
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
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>مشاريع الكلية</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #3498db;
color: white;
text-align: center;
padding: 1rem;
}
main {
display: flex;
}
.sidebar {
width: 250px;
background-color: #f1f1f1;
padding: 1rem;
}
#content {
flex: 1;
padding: 1rem;
}
.hidden {
display: none;
}
button {
background-color: #3498db;
color: white;
border: none;
padding: 0.5rem 1rem;
cursor: pointer;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 0.5rem;
}
a {
text-decoration: none;
color: #3498db;
}
.project-info {
display: flex;
justify-content: space-between;
}
.project-description, .project-details {
width: 48%;
}
.project-tags {
margin-top: 1rem;
}
.tag {
background-color: #3498db;
color: white;
padding: 0.2rem 0.5rem;
border-radius: 3px;
margin-right: 0.5rem;
}
</style>
</head>
<body>
<header>
<h1>مشاريع الكلية</h1>
</header>
<main>
<div class="sidebar">
<button id="openSidebar">فتح القائمة</button>
<div id="sidebarContent" class="hidden">
<h2>قائمة المشاريع</h2>
<ul>
<li><a href="#" onclick="loadContent('project1')">المشروع الأول</a></li>
<li><a href="#" onclick="loadContent('project2')">المشروع الثاني</a></li>
<li><a href="#" onclick="loadContent('project3')">المشروع الثالث</a></li>
</ul>
</div>
</div>
<div id="content">
<p>مرحبًا بك في صفحة مشاريع الكلية. هذه الصفحة تحتوي على معلومات عن المشاريع المختلفة التي يتم تنفيذها في الكلية. يمكنك استعراض المشاريع من خلال القائمة الجانبية.</p>
</div>
</main>
<script>
document.getElementById('openSidebar').addEventListener('click', function() {
document.getElementById('sidebarContent').classList.toggle('hidden');
});
function loadContent(projectId) {
let content = '';
switch(projectId) {
case 'project1':
content = `
<h2>المشروع الأول</h2>
<div class="project-info">
<div class="project-description">
<h3>وصف المشروع</h3>
<p>هذا هو وصف للمشروع الأول. يمكنك إضافة تفاصيل حول المشروع هنا.</p>
</div>
<div class="project-details">
<h3>تفاصيل المشروع</h3>
<ul>
<li>الفريق: فريق أ</li>
<li>المدة: 3 أشهر</li>
<li>الحالة: قيد التنفيذ</li>
</ul>
</div>
</div>
<div class="project-tags">
<h3>الكلمات المفتاحية</h3>
<span class="tag">تقنية</span>
<span class="tag">برمجة</span>
<span class="tag">تطوير</span>
</div>
`;
break;
case 'project2':
content = `
<h2>المشروع الثاني</h2>
<div class="project-info">
<div class="project-description">
<h3>وصف المشروع</h3>
<p>هذا هو وصف للمشروع الثاني. يمكنك إضافة تفاصيل حول المشروع هنا.</p>
</div>
<div class="project-details">
<h3>تفاصيل المشروع</h3>
<ul>
<li>الفريق: فريق ب</li>
<li>المدة: 4 أشهر</li>
<li>الحالة: مكتمل</li>
</ul>
</div>
</div>
<div class="project-tags">
<h3>الكلمات المفتاحية</h3>
<span class="tag">بحث</span>
<span class="tag">تحليل</span>
<span class="tag">إحصاء</span>
</div>
`;
break;
case 'project3':
content = `
<h2>المشروع الثالث</h2>
<div class="project-info">
<div class="project-description">
<h3>وصف المشروع</h3>
<p>هذا هو وصف للمشروع الثالث. يمكنك إضافة تفاصيل حول المشروع هنا.</p>
</div>
<div class="project-details">
<h3>تفاصيل المشروع</h3>
<ul>
<li>الفريق: فريق ج</li>
<li>المدة: 6 أشهر</li>
<li>الحالة: في مرحلة التخطيط</li>
</ul>
</div>
</div>
<div class="project-tags">
<h3>الكلمات المفتاحية</h3>
<span class="tag">تصميم</span>
<span class="tag">واجهة المستخدم</span>
<span class="tag">تجربة المستخدم</span>
</div>
`;
break;
default:
content = '<p>الرجاء اختيار مشروع من القائمة.</p>';
}
document.getElementById('content').innerHTML = content;
}
</script>
</body>
</html>