Files
dsProject/dsLightRag/XingJun/move.html
2025-09-09 13:47:24 +08:00

56 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>箭头动画</title>
<style>
body {
margin: 0;
padding: 0;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #f0f0f0;
}
.background-container {
position: relative;
width: 100%;
height: 100vh;
background-image: url('D:\\dsWork\\dsProject\\dsLightRag\\XingJun\\background.png');
background-position: center;
background-repeat: no-repeat;
background-size: contain;
z-index: 1;
}
</style>
</head>
<body>
<div class="background-container">
<!-- 新增红色箭头 -->
<div
class="red-arrow"
style="
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
z-index: 2;
width: 155px;
height: 173px;
background-image: url('./redArraw.png');
background-size: contain;
">
</div>
</div>
</body>
</html>