This repository has been archived on 2025-01-09. You can view files and clone it, but cannot push or open issues or pull requests.

29 lines
713 B
HTML
Raw Permalink Normal View History

2025-01-09 18:30:49 +08:00
<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>