-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
268 lines (227 loc) · 11.7 KB
/
Copy pathindex.html
File metadata and controls
268 lines (227 loc) · 11.7 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
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Yassir - Note Studio Ai</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
<style>
:root {
--bg-dark: #030303;
--accent-purple: #7042f8;
--text-main: #ffffff;
--text-dim: rgba(255, 255, 255, 0.6);
}
/* منع التحديد وحماية المحتوى */
* {
-webkit-user-select: none;
user-select: none;
box-sizing: border-box;
-webkit-touch-callout: none;
}
html, body {
scrollbar-width: none;
-ms-overflow-style: none;
margin: 0;
padding: 0;
overflow-x: hidden;
background-color: var(--bg-dark);
}
body::-webkit-scrollbar { display: none; }
body {
background: radial-gradient(circle at 50% -20%, #1a0b3b 0%, var(--bg-dark) 60%);
background-attachment: fixed;
color: var(--text-main);
font-family: 'Inter', sans-serif;
}
/* الشريط العلوي */
.top-bar {
width: 100%; height: 70px;
background-color: rgba(0, 0, 0, 0.85);
backdrop-filter: blur(20px);
position: fixed; top: 0; left: 0; z-index: 9999;
border-bottom: 1px solid rgba(112, 66, 248, 0.2);
display: flex; align-items: center;
}
.bar-container {
width: 90%; margin: 0 auto;
display: flex; justify-content: space-between; align-items: center;
}
.user-name { font-size: 1.4rem; font-weight: 800; color: white; display: flex; align-items: center; gap: 15px;}
.rec-tag { color: var(--accent-purple); text-shadow: 0 0 10px rgba(112, 66, 248, 0.5); }
.nav-download-btn {
background: var(--accent-purple); color: white; text-decoration: none;
padding: 10px 22px; border-radius: 12px; font-weight: 700;
transition: 0.3s; box-shadow: 0 4px 20px rgba(112, 66, 248, 0.4);
}
/* قسم الهيرو مع الخلفية GIF */
.main-hero {
height: 100vh;
background-image: url('img/background.gif');
background-size: cover;
background-position: center;
position: relative;
display: flex; align-items: center; justify-content: center;
}
.hero-overlay {
position: absolute; inset: 0;
background: linear-gradient(to bottom, rgba(3,3,3,0.3) 0%, var(--bg-dark) 100%);
display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero-content h1 {
font-size: clamp(3rem, 10vw, 5.5rem);
margin: 0; letter-spacing: -3px;
background: linear-gradient(to bottom, #fff 40%, var(--accent-purple));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
/* تنسيق الصفوف المتناوبة */
.feature-row {
display: flex; align-items: center;
padding: 100px 10%; gap: 80px;
opacity: 0; transform: translateY(50px);
transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.feature-row.reveal-active { opacity: 1; transform: translateY(0); }
.feature-row:nth-child(even) { flex-direction: row-reverse; }
.feature-text { flex: 1; }
.feature-text h2 { font-size: 2.8rem; margin-bottom: 20px; color: #fff; }
.feature-text p { color: var(--text-dim); line-height: 1.8; font-size: 1.1rem; }
/* تأثير الصورة 3D */
.feature-image { flex: 1.3; perspective: 2000px; position: relative; }
.feature-image img {
width: 100%; border-radius: 30px;
border: 1px solid rgba(112, 66, 248, 0.2);
box-shadow: 0 25px 50px rgba(0,0,0,0.5);
transform: rotateY(-15deg) rotateX(5deg) scale(0.95);
transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
cursor: pointer;
}
.feature-row:nth-child(even) .feature-image img { transform: rotateY(15deg) rotateX(5deg) scale(0.95); }
.feature-row:hover .feature-image img {
transform: rotateY(0deg) rotateX(0deg) scale(1.05);
border-color: var(--accent-purple);
box-shadow: 0 35px 70px rgba(112, 66, 248, 0.25);
}
/* وصف إضافي سفلي */
.description-section { padding: 100px 10%; border-top: 1px solid rgba(255,255,255,0.05); }
.desc-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.desc-box {
background: rgba(255, 255, 255, 0.02);
padding: 40px; border-radius: 24px;
border: 1px solid rgba(255, 255, 255, 0.05);
transition: 0.4s;
}
.desc-box h3 { color: var(--accent-purple); margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.desc-box:hover { border-color: var(--accent-purple); background: rgba(112, 66, 248, 0.04); }
@media (max-width: 968px) {
.feature-row, .feature-row:nth-child(even) { flex-direction: column; text-align: center; gap: 40px; padding: 60px 5%; }
.feature-image img { transform: none !important; }
.desc-container { grid-template-columns: 1fr; }
}
/* المودال */
#details-modal {
position: fixed; inset: 0; background: rgba(0,0,0,0.95);
display: none; align-items: center; justify-content: center; z-index: 10001;
}
#details-modal.active { display: flex; }
.modal-content img { max-width: 90%; max-height: 80vh; border-radius: 20px; box-shadow: 0 0 60px rgba(112, 66, 248, 0.4); }
</style>
</head>
<body>
<nav class="top-bar">
<div class="bar-container">
<div class="user-name">
YASSIR <span class="rec-tag">NOTE STUDIO</span>
</div>
<a href="https://github.com/YASSER-27/Note-Studio-Ai/releases/latest" class="nav-download-btn"><i class="fas fa-download"></i> Download v4.9.1</a>
</div>
</nav>
<div class="main-hero">
<div class="hero-overlay">
<div class="hero-content">
<h1>Note Studio Ai</h1>
<p style="color: var(--accent-purple); font-weight: 800; font-size: 1.2rem; margin-top: 10px;">VERSION 4.9.1 PRO</p>
</div>
</div>
</div>
<div id="content-flow"></div>
<section class="description-section">
<div class="desc-container">
<div class="desc-box" dir="rtl">
<h3><i class="fas fa-shield-alt"></i> خصوصية مطلقة</h3>
<p>يتم تشغيل نماذج الذكاء الاصطناعي محلياً على جهازك. بياناتك وأكوادك لا تغادر حاسوبك أبداً، مما يوفر أماناً بنسبة 100%.</p>
</div>
<div class="desc-box" dir="ltr">
<h3><i class="fas fa-bolt"></i> Local LLM</h3>
<p>Run powerful language models directly on your hardware. Experience zero latency and total control over your development environment.</p>
</div>
</div>
</section>
<footer style="text-align: center; padding: 60px; color: var(--text-dim); border-top: 1px solid rgba(255,255,255,0.05);">
<p>© 2026 Yassir - Note Studio AI. All rights reserved.</p>
</footer>
<div id="details-modal" onclick="closeDetails()">
<div class="modal-content"><img id="modal-img" src=""></div>
</div>
<script>
// مصفوفة البيانات للميزات
const featuresData = [
{ title: "الذكاء الاصطناعي", desc: "يعمل بذكاء اصطناعي محلي بدون الحاجة للإنترنت، مما يوفر لك سرعة استجابة فورية." },
{ title: "سرعة استثنائية", desc: "تم تحسين المحرك ليكون خفيفاً جداً على موارد الجهاز مع أداء برمجي عالٍ." },
{ title: "واجهة Note برو", desc: "بيئة تطوير متكاملة بواجهة مستخدم حديثة تدعم التخصيص الكامل والوضع الليلي المريح." },
{ title: "أمانك أولاً", desc: "حماية مشاريعك من خلال التشفير المحلي والحفظ التلقائي الذكي كل 10 دقائق." },
{ title: "تكامل الأدوات", desc: "دعم مدمج لجميع لغات البرمجة مع خاصية الإكمال التلقائي الذكي المدعوم بالذكاء الاصطناعي." }
];
const container = document.getElementById('content-flow');
// بناء الصفوف برمجياً
featuresData.forEach((data, index) => {
const imgNum = index + 1;
const row = document.createElement('div');
row.className = 'feature-row';
row.innerHTML = `
<div class="feature-text">
<h2>${data.title}</h2>
<p>${data.desc}</p>
</div>
<div class="feature-image">
<img src="img/${imgNum}.png" onclick="openDetails(this.src)" onerror="this.src='https://via.placeholder.com/800x500/1a0b3b/7042f8?text=Note+Studio+Feature+${imgNum}'">
</div>
`;
container.appendChild(row);
});
// مراقب الظهور (Scroll Reveal)
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) entry.target.classList.add('reveal-active');
});
}, { threshold: 0.15 });
document.querySelectorAll('.feature-row').forEach(row => observer.observe(row));
// وظائف المودال (تكبير الصور)
function openDetails(imgSrc) {
document.getElementById('modal-img').src = imgSrc;
document.getElementById('details-modal').classList.add('active');
}
function closeDetails() {
document.getElementById('details-modal').classList.remove('active');
}
// --- نظام الحماية المتقدم (المطلوب) ---
// 1. منع القائمة المنسدلة (Right Click)
document.addEventListener('contextmenu', e => e.preventDefault());
// 2. منع اختصارات لوحة المفاتيح الخاصة بالفحص (Inspect)
document.onkeydown = function(e) {
// F12
if(e.keyCode == 123) return false;
// Ctrl+Shift+I (Inspect)
if(e.ctrlKey && e.shiftKey && e.keyCode == 'I'.charCodeAt(0)) return false;
// Ctrl+Shift+J (Console)
if(e.ctrlKey && e.shiftKey && e.keyCode == 'J'.charCodeAt(0)) return false;
// Ctrl+Shift+C (Element Selector)
if(e.ctrlKey && e.shiftKey && e.keyCode == 'C'.charCodeAt(0)) return false;
// Ctrl+U (View Source)
if(e.ctrlKey && e.keyCode == 'U'.charCodeAt(0)) return false;
};
</script>
</body>
</html>