-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathisikAcKapa.html
More file actions
33 lines (27 loc) · 1.05 KB
/
isikAcKapa.html
File metadata and controls
33 lines (27 loc) · 1.05 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
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Akıllı Işık Sistemi</title>
</head>
<body>
<div id="durum">Akıllı Işık Kontrolü</div>
<button class="buton" id="ac" onclick="isikAc()">Işığı Aç</button>
<button class="buton" id="kapa" onclick="isikKapa()">Işığı Kapat</button>
</body>
<script>
function isikAc() {
document.body.style.backgroundColor = "yellow";
document.getElementById("durum").textContent = "Işık Açık";
durum.style.fontSize="40px";
document.getElementById("durum").style.color = "red";
}
function isikKapa() {
document.body.style.backgroundColor = "gray";
document.getElementById("durum").textContent = "Işık Kapalı";
durum.style.fontSize="40px";
document.getElementById("durum").style.color = "lightgray";
}
</script>
</html>