2501_93194557:
body {
margin: 0;
overflow: hidden;
background: #f5f5dc;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.video-container {
width: 360px;
height: 640px;
position: relative;
overflow: hidden;
border: 8px solid #8B4513;
border-radius: 20px;
}
.scene {
position: absolute;
width: 100%;
height: 100%;
opacity: 0;
transition: 2s ease;
}
.scene.active {
opacity: 1;
}
/* Scene 1 - 茅草凉亭 */
.scene1 {
background: linear-gradient(to bottom, #87CEEB, #E0F7FA);
}
.thatched-roof {
position: absolute;
top: 10%;
left: 20%;
width: 60%;
height: 25%;
background: #D2B48C;
clip-path: polygon(0% 100%, 20% 0%, 40% 30%, 60% 0%, 80% 30%, 100% 0%, 100% 100%);
}
/* 后续场景样式...(此处省略详细CSS) */
let currentScene = 1;
setInterval(() => {
document.querySelectorAll('.scene').forEach(el => el.classList.remove('active'));
document.querySelector(`.scene${currentScene}`).classList.add('active');
currentScene = currentScene % 5 + 1;
}, 2000);