25 lines
813 B
HTML
25 lines
813 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Stacked Iframes - Fullscreen</title>
|
|
</head>
|
|
<body style="margin:0;padding:0;width:100%;height:100%;overflow:hidden;">
|
|
<div style="position:relative;width:100vw;height:100vh;">
|
|
<!-- Bottom iframe dims in back -->
|
|
<iframe
|
|
id="iframe-bottom"
|
|
src="http://127.0.0.1:5500/4/load.html"
|
|
style="position:absolute;top:0;left:0;width:100%;height:100%;border:none;z-index:1;opacity:0.3;pointer-events:none;">
|
|
</iframe>
|
|
|
|
<!-- Top iframe interactive in front -->
|
|
<iframe
|
|
id="iframe-top"
|
|
src="https://python.langchain.com/docs/introduction/"
|
|
style="position:absolute;top:0;left:0;width:100%;height:100%;border:none;z-index:2;">
|
|
</iframe>
|
|
</div>
|
|
</body>
|
|
</html>
|