44 lines
933 B
HTML
44 lines
933 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>wikiframe test 3</title>
|
|
<meta name="viewport" content="width=device-width">
|
|
<meta charset="utf-8">
|
|
<style type="text/css">
|
|
body {
|
|
overflow: auto;
|
|
background: pink;
|
|
}
|
|
#map {
|
|
position: absolute;
|
|
left: 0; top: 0;
|
|
bottom: 0; right: 0;
|
|
z-index: 0;
|
|
}
|
|
#map a {
|
|
position: relative;
|
|
left: 200px;
|
|
top: 200px;
|
|
}
|
|
#page {
|
|
position: absolute;
|
|
left: 0; right: 0;
|
|
top: 60vh;
|
|
height: 100vh;
|
|
}
|
|
#page iframe {
|
|
width: 100%;
|
|
height: 100%;
|
|
border: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="map"><a href="#">map</a></div>
|
|
<div id="page">
|
|
<iframe src="/mw"></iframe>
|
|
</div>
|
|
</body>
|
|
<script>
|
|
</script>
|
|
</html> |