startit/oppgaver/uke3/lyspære.html

44 lines
1.2 KiB
HTML
Raw Permalink Normal View History

2024-08-22 12:21:23 +02:00
<!DOCTYPE html>
<html lang="en">
2024-08-22 14:27:58 +02:00
2024-08-22 12:21:23 +02:00
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>If else else if</title>
<style>
2024-08-22 14:27:58 +02:00
.lightBulb {
height: 200px;
2024-08-22 12:21:23 +02:00
width: 200px;
2024-08-22 14:27:58 +02:00
background-color: grey;
}
img {
border-radius: 180px;
border-radius: 50%;
2024-08-22 12:21:23 +02:00
}
</style>
</head>
2024-08-22 14:27:58 +02:00
<body>
<div class="lightBulb" id="bulb">
</div>
<button onclick="onOff()">Av/På</button>
2024-08-22 12:21:23 +02:00
<script>
2024-08-22 14:27:58 +02:00
let on = false;
function onOff() {
if (on != true) {
document.getElementById('bulb').style.backgroundColor = 'yellow';
document.getElementById('bulb').innerHTML = /*HTML*/ `
<img src="https://getacademy.moodlecloud.com/pluginfile.php/5208/mod_label/intro/bulb.png">
`
on = true;
2024-08-22 12:21:23 +02:00
} else {
2024-08-22 14:27:58 +02:00
document.getElementById('bulb').style.backgroundColor = 'grey';
document.getElementById('bulb').innerHTML = 'Lyset er av :-(';
2024-08-22 14:27:58 +02:00
on = false;
2024-08-22 12:21:23 +02:00
}
}
</script>
</body>
2024-08-22 14:27:58 +02:00
2024-08-22 12:21:23 +02:00
</html>