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

71 lines
2.0 KiB
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 */
2026-02-06 16:30:47 +08:00
background-color: #030829;
2026-02-02 14:44:36 +08:00
}
.screen-container {
width: 6500px;
height: 1800px;
2026-02-06 16:30:47 +08:00
background-image: url('<%=request.getContextPath()%>/IMG/screen1-1.png');
/* background-image: url('../../IMG/screen1-1.png'); */
2026-02-02 14:44:36 +08:00
background-size: 100% 100%;
background-repeat: no-repeat;
position: relative;
}
2026-02-02 23:52:49 +08:00
/* Specific Position for Data 6040 */
.val-6040 {
position: absolute;
top: 335px;
left: 209px;
width: 121px;
height: 62px;
color: rgba(255, 255, 255, 1);
font-family: 'Gilroy', 'DIN Alternate', 'Arial Narrow', sans-serif;
font-weight: 900;
font-size: 50px;
z-index: 10;
text-align: center;
line-height: 62px;
}
.val-4197 {
top: 335px;
left: 592px;
width: fit-content;
height: fit-content;
display: inline-flex;
place-content: flex-start;
place-items: flex-end;
gap: 8px;
}
.val-12356 {
top: 335px;
left: 975px;
width: fit-content;
height: fit-content;
display: inline-flex;
place-content: flex-start;
place-items: flex-end;
gap: 8px;
}
2026-02-02 14:44:36 +08:00
</style>
</head>
<body>
<div class="screen-container">
2026-02-06 16:30:47 +08:00
<!-- <div class="val-6040">6040</div>
2026-02-02 23:52:49 +08:00
<div class="val-4197">4197</div>
2026-02-06 16:30:47 +08:00
<div class="val-12356">12356</div> -->
2026-02-02 14:44:36 +08:00
</div>
</body>
</html>