-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPointerLockAndFullscreen-iframes.html
35 lines (32 loc) · 1.11 KB
/
PointerLockAndFullscreen-iframes.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
<!DOCTYPE html>
<html><head>
<style type="text/css">
#container {
border: solid black 1px;
background: white;
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
display: flex;
flex-direction: column;
margin: 0;
}
#container > iframe {
margin: 10px;
flex-grow: 1
}
</style>
</head>
<body>
<div id="container">
<div><strong>https</strong>://scheib.github.io/HTMLMisc/PointerLockAndFullscreen.html:</div>
<iframe src="https://scheib.github.io/HTMLMisc/PointerLockAndFullscreen.html" allowfullscreen webkitallowfullscreen></iframe>
<div>http://scheib.github.io/HTMLMisc/PointerLockAndFullscreen.html:</div>
<iframe src="http://scheib.github.io/HTMLMisc/PointerLockAndFullscreen.html" allowfullscreen webkitallowfullscreen></iframe>
<div>https://rawgit.com/scheib/HTMLMisc/gh-pages/PointerLockAndFullscreen.html:</div>
<iframe src="https://rawgit.com/scheib/HTMLMisc/gh-pages/PointerLockAndFullscreen.html" allowfullscreen webkitallowfullscreen></iframe>
</div>
</body>
</html>