-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (46 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="style.css" rel="stylesheet"/>
<title>CuyUniversity Sesi-6</title>
</head>
<body>
<div class="container">
<nav>
<a onclick="reRender()" id="home">HOME</a>
<a onclick="darkMode()" id="mode">MODE</a>
</nav>
<h1>Sesi 6 CuyUniversity</h1>
<p class="info" id="info"></p>
</div>
<!-- initializing function -->
<script>
let body = document.body;
let info = document.getElementById("info");
let mode = document.getElementById("mode");
let home = document.getElementById("home");
const darkLimit = 5;
let darkCounter = 0;
let darkRemainingLeft;
function darkMode(){
if (darkRemainingLeft == 1){
info.textContent = "Kuota darkmode anda sudah habis!";
mode.style.display = "none";
home.textContent = "RESTART";
return;
}
darkCounter+=1;
darkRemainingLeft = darkLimit - darkCounter;
//render ke info element
info.textContent = `Darkmode dipakai ${darkCounter}x, remaining ${darkRemainingLeft}x`;
body.classList.toggle("dark");
}
function reRender(){
location.reload();
}
</script>
</body>
</html>