-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhjelp.html
40 lines (34 loc) · 949 Bytes
/
hjelp.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
<section>
<div>nettstedets innehaver som ikke påtar seg noe som helst ansvar for bruk av nettstedet</div>
<button id="help">Vis hjelpeinfo</button>
<div class="help_container" data-help>
<h1>Heisann</h1>
<p>Din hjelp her</p>
</div>
</section>
<style>
.help_container {
display: none;
position: absolute;
top: 100px;
left: 50%;
transform: translateX(-50%);
width: 300px;
height: 150px;
border: solid 2px #333333;
background-color: white;
flex-direction: column;
justify-content: center;
align-items: center;
}
.help_container--active {
display: flex;
}
</style>
<script>
var button = document.getElementById("help");
button.addEventListener("click", function(){
var container = document.querySelector('[data-help]');
container.classList.toggle("help_container--active");
})
</script>