1 Star 0 Fork 0

马哈切夫/iframe内嵌项目demo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.html 1.30 KB
一键复制 编辑 原始数据 按行查看 历史
马哈切夫 提交于 2024-01-23 10:51 . chore: add README
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<style>
.app {
display: flex;
flex-direction: column;
height: 100vh;
}
.page2 {
flex: 1;
}
.container {
width: 300px;
height: 300px;
display: flex;
}
.test {
background-color: aqua;
flex: 1;
}
</style>
<body>
<div class="app">
<iframe
src="http://127.0.0.1:5500/child.html"
width="100%"
height="40px"
class="page1"
></iframe>
<div class="page2">
<iframe
width="100%"
frameborder="no"
height="100%"
src="https://www.bilibili.com/"
></iframe>
</div>
</div>
<div class="container">
<div class="test"></div>
</div>
<script>
const page1 = document.querySelector(".page1");
const page2 = document.querySelector(".page2");
window.addEventListener("message", (e) => {
const { targetUrl, userId } = e.data || {};
if (targetUrl && userId) {
page2.children[0].src = `${targetUrl}/${userId}`;
}
});
console.log(page1, page2);
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jin-rongda/iframe-embedded-project-demo.git
git@gitee.com:jin-rongda/iframe-embedded-project-demo.git
jin-rongda
iframe-embedded-project-demo
iframe内嵌项目demo
main

搜索帮助