Files
KnowledgeBase/public/scada/demo.html

53 lines
996 B
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BL15U 光束线组态图</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background: #ffffff;
overflow: hidden;
font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}
#diagram-container {
width: 100%;
height: 100%;
position: relative;
background: #f8f9fa;
}
#background-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: contain;
object-position: center;
background: #f8f9fa;
}
</style>
</head>
<body>
<div id="diagram-container">
<img id="background-image" src="beamline-background.png" alt="光束线组态图">
</div>
</body>
</html>