30 lines
735 B
Plaintext
30 lines
735 B
Plaintext
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>排污户大屏展示</title>
|
|
<style>
|
|
body, html {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: auto;
|
|
}
|
|
.screen-container {
|
|
width: 6500px;
|
|
height: 1800px;
|
|
background-image: url('<%=request.getContextPath()%>/IMG/screen3.png');
|
|
background-size: 100% 100%;
|
|
background-repeat: no-repeat;
|
|
position: relative;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="screen-container">
|
|
</div>
|
|
</body>
|
|
</html>
|