29 lines
713 B
HTML
29 lines
713 B
HTML
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>shell && iframe</title>
|
||
|
<style>
|
||
|
* {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
iframe {
|
||
|
position: fixed;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<!-- <h2>shell and iframe</h2>
|
||
|
<a id="openUrl" href="https://cantyonion.site">打开url</a>
|
||
|
<br><br>
|
||
|
<button id="openFolder">打开目录</button> -->
|
||
|
<iframe src="https://cantyonion.site" frameborder="0" id="webview"></iframe>
|
||
|
<script src="index.js"></script>
|
||
|
</body>
|
||
|
</html>
|