增加一个content-body样式,适配前台配置的页面到iframe中
This commit is contained in:
parent
ce5118ef53
commit
297b7f511f
|
@ -133,4 +133,20 @@
|
|||
top: 94px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.content-body {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
bottom: 40px;
|
||||
right: 0;
|
||||
top: 94px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.content-body iframe {
|
||||
width: 100%;
|
||||
border: none;
|
||||
height: 100%;
|
||||
overflow: auto;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -628,8 +628,7 @@ ul.breadcrumb {
|
|||
padding-right: 6px;
|
||||
}
|
||||
|
||||
iframe {
|
||||
.content-body iframe {
|
||||
width: 100%;
|
||||
border: none;
|
||||
height: 500px;
|
||||
}
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
<title></title>
|
||||
</head>
|
||||
<body>
|
||||
<div style="height: 1000px; background-color: aqua">我就是一个测试页面</div>
|
||||
<div style="height: 1000px; background-color: #77af77">我就是一个测试页面</div>
|
||||
<div>Bottom</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1 +1,4 @@
|
|||
|
||||
$(function () {
|
||||
var fra = $('iframe').get(0);
|
||||
fra.height = fra.contentDocument.body.offsetHeight;
|
||||
});
|
|
@ -1,3 +1,4 @@
|
|||
@model ContentModel
|
||||
<h4>欢迎使用本系统</h4>
|
||||
<iframe id="fraContent" src="@Model.Url"></iframe>
|
||||
<div class="content-body">
|
||||
<iframe src="@Model.Url"></iframe>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue