forked from VorticVR/vortic-embeddable-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-collapse-iframe.html
55 lines (50 loc) · 1.43 KB
/
test-collapse-iframe.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>test collapse iframe</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.iframe-wrapper {
height: 100vh;
width: 100vw;
}
.btn-wrapper {
display: flex;
}
.btn-wrapper button {
padding: 20px;
margin: 20px;
}
</style>
</head>
<body>
<div id="root">
<div class="btn-wrapper">
<button onclick="onCollapse()" id="collapse" type="button">Collapse</button>
<button id="expand" onclick="onExpand()" type="button">Expand</button>
</div>
<div id="collapseContent" style="display: none">
<h2>Image at bottom</h2>
<img src="https://www.w3schools.com/html/pic_trulli.jpg" alt="Trulli" width="500" height="333">
</div>
</div>
<script>
const collapse = document.getElementById('collapse');
const expand = document.getElementById('expand');
const collapseContent = document.getElementById('collapseContent');
function onCollapse() {
collapseContent.style.display = "none";
}
function onExpand() {
collapseContent.style.display = "block";
}
</script>
</body>
</html>