Jump to content

lexus

Newbie
  • Posts

    1
  • Joined

  • Last visited

lexus's Achievements

Explorer

Explorer (1/14)

0

Reputation

  1. Я сделал так: <input type="hidden" name="slide_current" id="slide_current" value="1"> <script language="javascript" type="text/javascript"> <!-- var img_next = 1; function changeSlide(slides) { // создаём массив с 4 именами картинок. var slides = new Array(1, 2, 3, 4); document.getElementById('slideshow').style.background = 'url(/images/'+document.getElementById('slide_current').value+'.jpg) no-repeat'; // проверка значения счётчика, чтобы он не вышел за рамки массива. if (slides.length == img_next) { img_next = 1; } else { img_next++; } // сохраняем значение счётчика в переменную. document.getElementById('slide_current').value = img_next; } // смена слайда каждые 5 секунд setInterval(changeSlide, 5000); //--> </script>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy