-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjs.js
184 lines (134 loc) · 4.54 KB
/
js.js
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
console.log("JavaScript file loaded");
let close = document.getElementById("menu-close");
let btn = document.getElementById("menu-btn");
let amr = document.querySelectorAll('nav .navigation ul');
btn.onclick = function () {
amr.forEach(function (navItem) {
navItem.classList.add("active");
});
};
close.onclick = function () {
amr.forEach(function (navItem) {
navItem.classList.remove("active");
});
};
// let bot = document.getElementById('open');
// let botc = document.getElementById('close');
// const box = document.querySelector('.expert-box');
// bot.onclick = function(){
// box.style.display="flex";
// bot.style.display="none";
// botc.style.display="flex";
// };
// botc.onclick = function(){
// box.style.display="none";
// bot.style.display="flex";
// botc.style.display="none";
// };
// Get all the sections
const sections = document.querySelectorAll('section');
// Loop over each section
sections.forEach(section => {
// Get the buttons in the section
const openBtn = section.querySelector('#open');
const closeBtn = section.querySelector('#close');
const box = section.querySelector('.expert-box');
// Add click event listeners to the buttons if they exist
if (openBtn && closeBtn && box) {
openBtn.onclick = function () {
box.style.display = "flex";
openBtn.style.display = "none";
closeBtn.style.display = "flex";
};
closeBtn.onclick = function () {
box.style.display = "none";
openBtn.style.display = "flex";
closeBtn.style.display = "none";
};
}
});
document.addEventListener('DOMContentLoaded', function () {
document.getElementById('load').addEventListener('click', function () {
location.reload();
});
});
document.addEventListener('DOMContentLoaded', function () {
document.getElementById('yellow').addEventListener('click', function () {
location.reload();
});
});
// let opn = document.getElementById('opn');
// let cls = document.getElementById('cls');
// let mzd = document.getElementsByClassName('mazid')
// opn.onclick = function(){
// mzd.style.display= "";
// opn.style.display="none";
// cls.style.display= "flex";
// }
let opn = document.getElementById('opn');
let cls = document.getElementById('cls');
let mzd = document.getElementsByClassName('mazid');
opn.onclick = function () {
mzd[0].style.display = "block";
opn.style.display = "none";
cls.style.display = "flex";
}
cls.onclick = function () {
mzd[0].style.display = "none";
opn.style.display = "flex";
cls.style.display = "none";
}
let footer = document.querySelectorAll('.footer-col');
Array.from(footer).forEach(footer => {
footer.style.display = "none";
});
// search
document.getElementById('searchInput').addEventListener('keyup', function () {
var input = document.getElementById('searchInput').value.toLowerCase();
var content = document.getElementById('content'); // استبدل content بمعرف القسم الذي يحتوي على المحتوى
var paragraphs = content.getElementsByTagName('p'); // يمكنك تحديد نوع العناصر حسب نوع المحتوى (مثلاً <div>، <li>، إلخ)
for (var i = 0; i < paragraphs.length; i++) {
var paragraph = paragraphs[i];
var text = paragraph.textContent || paragraph.innerText;
var innerHTML = paragraph.innerHTML;
if (text.toLowerCase().indexOf(input) > -1) {
var regex = new RegExp(input, "gi");
var highlightedText = text.replace(regex, function (match) {
return '<span class="highlight">' + match + '</span>';
});
paragraph.innerHTML = highlightedText;
} else {
paragraph.innerHTML = text;
}
}
});
document.getElementById('toggle-theme').addEventListener('click', function () {
console.log("amrroshdysayed");
document.body.classList.toggle('dark-mode');
if (document.body.classList.contains('dark-mode')) {
this.textContent = 'الوضع النهاري';
} else {
this.textContent = 'الوضع الليلي';
}
});
document.addEventListener('DOMContentLoaded', function () {
function typeWriter(element, speed) {
let text = element.innerHTML;
element.innerHTML = '';
let i = 0;
function typing() {
if (i < text.length) {
element.innerHTML += text.charAt(i);
i++;
setTimeout(typing, speed);
}
}
typing();
}
const pElement = document.getElementById('typewriter');
if (pElement) {
typeWriter(pElement, 50); // Adjust speed as needed
}
});
const navElement = document.querySelectorAll('nav');
console.log(navElement);