我想<frameset>
使用 HTML5 一段时间,我设法使用 html 代码创建了一些东西,我想让两个 iframe 可调整大小,但也要并排放置,两个 iframe 之间存在问题,因为我的代码使它们独立调整大小,我想要调整大小,就像在 old 中实现的那样<frameset>
。
这是我的html代码:
<body>
<div class="resizable1">
<iframe class="menu" src="menu.html"></iframe>
</div>
<div class="resizable2">
<iframe class="mainContent" src="events.html"></iframe>
</div>
</body>
这是我的CSS:
.ui-resizable-helper {
border: 1px dotted gray;
}
.resizable1 {
float: left;
width: 20%;
height: 80%;
display: block;
border: 2px solid gray;
overflow: hidden;
position: relative;
}
.resizable2 {
float: left;
width: 75%;
height: 80%;
display: block;
border: 2px solid gray;
overflow: hidden;
position: relative;
}
.menu {
float: left;
width: 20%;
height: 80%;
}
.mainContent {
float: left;
width: 75%;
height: 80%;
}
这是我的 jQuery 脚本:
$(function() {
$(".resizable1").resizable({
animate : true,
animateEasing : 'swing',
imateDuration : 500
});
$(".resizable2").resizable({
animate : true,
animateEasing : 'swing',
imateDuration : 500
});
});
</script>