demo-ui/public/iframe/index.html

37 lines
774 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title></title>
<script></script>
<style>
html,
body,
.box {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
.iframe {
width: 100%;
margin: 0;
padding: 0;
margin-top: -124px;
height: calc(100% + 124px);
}
</style>
</head>
<body>
<div class="box">
<iframe id="iframe" frameborder="no" class="iframe" src=""></iframe>
</div>
</body>
<script>
const root = 'iframe/index.html?url='
const href = window.location.href
const idx = href.indexOf(root)
document.getElementById('iframe').src = href.substring(idx + root.length)
</script>
</html>