Files
SIPAIIS_WMS_JSSW/src/main/webapp/jsp/bigScreen.jsp

31 lines
812 B
Plaintext
Raw Normal View History

2026-02-02 14:44:36 +08:00
<%@ 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; /* Allow scrolling if window is smaller */
}
.screen-container {
width: 6500px;
height: 1800px;
background-image: url('<%=request.getContextPath()%>/IMG/screen1.png');
background-size: 100% 100%;
background-repeat: no-repeat;
position: relative;
}
</style>
</head>
<body>
<div class="screen-container">
<!-- Content placeholder -->
</div>
</body>
</html>