82 lines
2.5 KiB
Plaintext
82 lines
2.5 KiB
Plaintext
<%@ page language="java" pageEncoding="UTF-8"%>
|
|
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%>
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
|
|
<%@ page import="com.sipai.entity.base.ServerObject"%>
|
|
<%@ taglib uri="http://www.springsecurity.org/jsp" prefix="security"%>
|
|
<!DOCTYPE html>
|
|
<!-- <html lang="zh-CN"> -->
|
|
<!-- BEGIN HEAD -->
|
|
<head>
|
|
<title><%= ServerObject.atttable.get("TOPTITLE")%></title>
|
|
<!-- 引用页头及CSS页-->
|
|
<jsp:include page="/jsp/inc.jsp"></jsp:include>
|
|
<style type="text/css">
|
|
.top{
|
|
width:100%;
|
|
height:66%;
|
|
margin:0;
|
|
padding:0;
|
|
}
|
|
.topPosition{
|
|
width:50%;
|
|
height:100%;
|
|
margin:0;
|
|
padding:0;
|
|
float:left;
|
|
}
|
|
.bottom{
|
|
background-color:#182E53;
|
|
color:#61DEFF;
|
|
width:100%;
|
|
height:34%;
|
|
margin:0;
|
|
padding:0;
|
|
}
|
|
.bottomPosition{
|
|
width:25%;
|
|
height:100%;
|
|
margin:0;
|
|
padding:0;
|
|
float:left;
|
|
}
|
|
</style>
|
|
<script type="text/javascript">
|
|
$(function() {
|
|
BodyHeight();
|
|
})
|
|
$(window).resize(function () {
|
|
//执行代码块
|
|
BodyHeight();
|
|
});
|
|
function BodyHeight() {
|
|
$("#main").height($(window).height());
|
|
}
|
|
</script>
|
|
|
|
</head>
|
|
<body style="margin:0;padding:0">
|
|
<div id="main" style="width:100%;height:100%;margin:0;padding:0">
|
|
<div class="top">
|
|
<div class="topPosition"><img src="<%=request.getContextPath()%>/IMG/demo/zj.jpg"
|
|
style="width:100%;height:100%;"alt="" /></div>
|
|
<div class="topPosition"><img src="<%=request.getContextPath()%>/IMG/demo/zj.jpg"
|
|
style="width:100%;height:100%;"alt="" /></div>
|
|
</div>
|
|
<div class="bottom">
|
|
<div class="bottomPosition"><img src="<%=request.getContextPath()%>/IMG/demo/jincheng.png"
|
|
style="width:100%;height:100%;"alt="" /></div>
|
|
<div class="bottomPosition">
|
|
<iframe id ="iframe1" style="height:100%; width:100%;overflow:hidden;zoom:1;"
|
|
src="<%=request.getContextPath()%>/jsp/visual/1F/video.jsp" frameborder=0 scrolling="no" allowTransparency="false"></iframe>
|
|
</div>
|
|
<div class="bottomPosition">
|
|
<iframe id ="iframe2" style="height:100%; width:100%;overflow:hidden;zoom:1;"
|
|
src="<%=request.getContextPath()%>/jsp/visual/1F/video1.jsp" frameborder=0 scrolling="no" allowTransparency="false"></iframe>
|
|
</div>
|
|
<div class="bottomPosition"><img src="<%=request.getContextPath()%>/IMG/demo/daogang.png"
|
|
style="width:100%;height:100%;"alt="" /></div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |