Files
dsProject/dsLightRag/XingJun/move.html
2025-09-09 14:04:29 +08:00

91 lines
2.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">
<!-- 1.png 图片 -->
<div
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;
">
</div>
<!-- 新增2.png 图片 -->
<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('./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');
background-size: contain;
background-repeat: no-repeat;
">
</div>
</div>
</body>
</html>