Files
dsProject/dsLightRag/XingJun/move.html

56 lines
1.4 KiB
HTML
Raw Normal View History

2025-09-09 07:33:51 +08:00
<!DOCTYPE html>
2025-09-09 07:46:47 +08:00
<html lang="en">
2025-09-09 07:33:51 +08:00
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2025-09-09 07:46:47 +08:00
<title>箭头动画</title>
2025-09-09 07:33:51 +08:00
<style>
body {
margin: 0;
padding: 0;
height: 100vh;
display: flex;
2025-09-09 07:46:47 +08:00
flex-direction: column;
2025-09-09 07:33:51 +08:00
align-items: center;
2025-09-09 07:46:47 +08:00
justify-content: center;
2025-09-09 07:33:51 +08:00
background-color: #f0f0f0;
}
2025-09-09 07:46:47 +08:00
2025-09-09 07:33:51 +08:00
.background-container {
position: relative;
width: 100%;
height: 100vh;
2025-09-09 07:46:47 +08:00
background-image: url('D:\\dsWork\\dsProject\\dsLightRag\\XingJun\\background.png');
2025-09-09 07:33:51 +08:00
background-position: center;
background-repeat: no-repeat;
background-size: contain;
2025-09-09 07:46:47 +08:00
z-index: 1;
2025-09-09 07:33:51 +08:00
}
2025-09-09 07:46:47 +08:00
2025-09-09 13:47:24 +08:00
2025-09-09 07:33:51 +08:00
</style>
</head>
<body>
<div class="background-container">
2025-09-09 13:47:24 +08:00
<!-- 新增红色箭头 -->
<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;
">
2025-09-09 07:39:54 +08:00
</div>
2025-09-09 07:33:51 +08:00
</div>
2025-09-09 13:47:24 +08:00
2025-09-09 07:33:51 +08:00
</body>
2025-09-09 13:47:24 +08:00
</html>