Files
dsProject/dsLightRag/XingJun/move.html

91 lines
2.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 14:04:29 +08:00
<!-- 1.png 图片 -->
2025-09-09 13:47:24 +08:00
<div
2025-09-09 14:04:29 +08:00
class="red-arrow"
style="
position: absolute;
top: 10%;
left: 10%;
transform: translate(-50%,-50%);
z-index: 2;
width: 155px;
height: 173px;
background-image: url('./1.png');
background-size: contain;
background-repeat: no-repeat;
">
2025-09-09 07:33:51 +08:00
</div>
2025-09-09 14:04:29 +08:00
<!-- 新增2.png 图片 -->
<div
class="red-arrow"
2025-09-09 13:47:24 +08:00
style="
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
z-index: 2;
width: 155px;
height: 173px;
2025-09-09 14:04:29 +08:00
background-image: url('./2.png');
background-size: contain;
background-repeat: no-repeat;
">
</div>
<!-- 新增3.png 图片 -->
<div
class="red-arrow"
style="
position: absolute;
top: 90%;
left: 90%;
transform: translate(-50%,-50%);
z-index: 2;
width: 155px;
height: 173px;
background-image: url('./3.png');
2025-09-09 13:47:24 +08:00
background-size: contain;
2025-09-09 14:04:29 +08:00
background-repeat: no-repeat;
2025-09-09 13:47:24 +08:00
">
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>