-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathscript.js
47 lines (35 loc) · 1.34 KB
/
script.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
// Coder Shiyar - https://youtube.com/codershiyar
// ----------------------------------------------------
let arabic = document.getElementById("arabic");
let english = document.getElementById("english");
let title = document.getElementById("title");
let welcome = document.getElementById("welcome-text");
let about = document.getElementById("about");
let aboutText = document.getElementById("about-text");
let contact = document.getElementById("contact");
arabic.onclick = ()=>{
setLanugage("arabic");
localStorage.setItem("Lang","arabic");
};
english.onclick = ()=>{
setLanugage("english");
localStorage.setItem("Lang","english");
};
onload = ()=>{
setLanugage(localStorage.getItem("Lang"));
};
function setLanugage(getLanuage){
if(getLanuage === "arabic"){
title.innerHTML = "مبرمج شيار";
welcome.innerHTML = "مرحبا بكم في صفحة مبرمج شيار";
about.innerHTML = "حولنا";
aboutText.innerHTML = "انا استاذ برمجيات و مهندس برمجيات";
contact.innerHTML = "اتصل بنا";
}else if(getLanuage ==="english"){
title.innerHTML = "Coder Shiyar";
welcome.innerHTML = "Welcome to website of Coder Shiyar";
about.innerHTML = " About US";
aboutText.innerHTML = " I am a teacher and a Software Developer";
contact.innerHTML = "Contact us";
}
}