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

248 lines
8.1 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;
background-color: #f0f0f0;
overflow: hidden;
}
.background-container {
position: relative;
flex: 1;
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;
}
/* 控制面板样式 */
.control-panel {
width: 200px;
background-color: #fff;
border-left: 1px solid #ccc;
padding: 20px;
height: 100vh;
box-sizing: border-box;
z-index: 2;
overflow-y: auto;
}
.control-section {
margin-bottom: 30px;
}
.control-section h3 {
margin-top: 0;
padding-bottom: 10px;
border-bottom: 1px solid #eee;
}
/* 图片选择按钮样式 */
.image-selector {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 10px;
margin-top: 15px;
}
.image-btn {
width: 70px;
height: 70px;
border: 2px solid #ddd;
border-radius: 4px;
cursor: pointer;
overflow: hidden;
transition: all 0.2s;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
.image-btn:hover {
border-color: #4CAF50;
transform: scale(1.05);
}
.image-btn:active {
transform: scale(0.98);
}
/* 箭头图片样式 */
.arrow-image {
position: absolute;
width: 155px;
height: 173px;
background-size: contain;
background-repeat: no-repeat;
z-index: 2;
cursor: move;
}
/* 保存按钮样式 */
.save-btn {
width: 100%;
padding: 10px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
margin-top: 20px;
}
.save-btn:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<div class="background-container">
</div>
<!-- 右侧控制面板 -->
<div class="control-panel">
<div class="control-section">
<h3>增加箭头</h3>
<div class="image-selector">
<div class="image-btn" data-image="./1.png" style="background-image: url('./1.png');"></div>
<div class="image-btn" data-image="./2.png" style="background-image: url('./2.png');"></div>
<div class="image-btn" data-image="./3.png" style="background-image: url('./3.png');"></div>
<div class="image-btn" data-image="./4.png" style="background-image: url('./4.png');"></div>
<div class="image-btn" data-image="./5.png" style="background-image: url('./5.png');"></div>
</div>
<!-- 新增保存按钮 -->
<button class="save-btn" id="savePositionsBtn">保存位置</button>
</div>
</div>
<script>
// 获取DOM元素
const backgroundContainer = document.querySelector('.background-container');
const imageButtons = document.querySelectorAll('.image-btn');
const saveBtn = document.getElementById('savePositionsBtn');
// 页面加载时从localStorage读取并恢复箭头位置
document.addEventListener('DOMContentLoaded', () => {
loadArrowPositions();
});
// 为每个图片按钮添加点击事件
imageButtons.forEach(button => {
button.addEventListener('click', () => {
const imagePath = button.getAttribute('data-image');
addImageToContainer(imagePath);
});
});
// 保存按钮点击事件
saveBtn.addEventListener('click', saveArrowPositions);
// 添加图片到主区域
function addImageToContainer(imagePath, position = null) {
// 创建新的图片元素
const newImage = document.createElement('div');
newImage.className = 'arrow-image';
newImage.style.backgroundImage = `url('${imagePath}')`;
// 设置位置
if (position) {
// 从保存的数据加载位置
newImage.style.left = position.left;
newImage.style.top = position.top;
} else {
// 随机位置
const containerRect = backgroundContainer.getBoundingClientRect();
const x = Math.random() * (containerRect.width - 155);
const y = Math.random() * (containerRect.height - 173);
newImage.style.left = `${x}px`;
newImage.style.top = `${y}px`;
}
// 添加到容器
backgroundContainer.appendChild(newImage);
// 添加拖拽功能
makeElementDraggable(newImage);
}
// 保存所有箭头位置到localStorage
function saveArrowPositions() {
const arrows = document.querySelectorAll('.arrow-image');
const arrowData = Array.from(arrows).map(arrow => ({
imagePath: arrow.style.backgroundImage.match(/url\('?"?(.*?)'?"?\)/)[1],
left: arrow.style.left,
top: arrow.style.top
}));
localStorage.setItem('arrowPositions', JSON.stringify(arrowData));
alert('位置已保存!');
}
// 从localStorage加载箭头位置
function loadArrowPositions() {
const savedData = localStorage.getItem('arrowPositions');
if (savedData) {
try {
const arrowData = JSON.parse(savedData);
arrowData.forEach(data => {
addImageToContainer(data.imagePath, {
left: data.left,
top: data.top
});
});
} catch (e) {
console.error('加载保存的箭头位置失败:', e);
localStorage.removeItem('arrowPositions'); // 移除损坏的数据
}
}
}
// 使元素可拖拽
function makeElementDraggable(element) {
let isDragging = false;
let offsetX, offsetY;
element.addEventListener('mousedown', startDrag);
element.addEventListener('mousemove', drag);
element.addEventListener('mouseup', endDrag);
element.addEventListener('mouseleave', endDrag);
function startDrag(e) {
isDragging = true;
const rect = element.getBoundingClientRect();
offsetX = e.clientX - rect.left;
offsetY = e.clientY - rect.top;
element.style.zIndex = '10';
}
function drag(e) {
if (!isDragging) return;
e.preventDefault();
const x = e.clientX - offsetX;
const y = e.clientY - offsetY;
element.style.left = `${x}px`;
element.style.top = `${y}px`;
}
function endDrag() {
isDragging = false;
element.style.zIndex = '2';
}
}
</script>
</body>
</html>