body { font-family: Arial, sans-serif; margin: 0; background: #f5f5f5; text-align: center; } /* Слайдер */ .slider { position: relative; max-width: 800px; margin: 20px auto; overflow: hidden; border-radius: 10px; } .slides { display: flex; transition: transform 0.5s ease-in-out; } .slides img { width: 100%; flex-shrink: 0; } /* Кнопки */ .buttons { position: absolute; top: 50%; width: 100%; display: flex; justify-content: space-between; transform: translateY(-50%); } button { background: rgba(0,0,0,0.5); color: white; border: none; padding: 10px; cursor: pointer; } /* Адаптив */ @media (max-width: 600px) { h1 { font-size: 20px; } } 🔥 喷漆枪大促销! 专业及家用喷枪最高优惠40%。立即以最优惠价格升级您的工具! ❮ ❯ let index = 0; const slides = document.getElementById('slides'); const total = slides.children.length; function showSlide() { slides.style.transform = `translateX(-${index * 100}%)`; } function nextSlide() { index = (index + 1) % total; showSlide(); } function prevSlide() { index = (index - 1 + total) % total; showSlide(); }