Jump to content

карусель из картинок, нужна ваша помощь


ghostik32
 Share

Recommended Posts

<script type="text/javascript">
//<![CDATA[
scroll_limit = 3102;
step = 1;
//]]>
</script>

<div class="image" id="slide">
<table align="center" id="Content" cellspacing="0" cellpadding="0" border="0">
<tr>
<td><img src="images/slide_show/1.jpg" style="width: 169px;" alt="" /></td>
<td><img src="images/slide_show/2.jpg" style="width: 169px;" alt="" /></td>
<td><img src="images/slide_show/3.jpg" style="width: 169px;" alt="" /></td>
<td><img src="images/slide_show/4.jpg" style="width: 169px;" alt="" /></td>
<td><img src="images/slide_show/5.jpg" style="width: 169px;" alt="" /></td>
<td><img src="images/slide_show/6.jpg" style="width: 169px;" alt="" /></td>
<td><img src="images/slide_show/7.jpg" style="width: 169px;" alt="" /></td>
</tr>
</table>
</div>

сам скрипт

if (window.attachEvent) window.attachEvent("onload", StartSlideShow);
else if (window.addEventListener) window.addEventListener("load", StartSlideShow, false);

//var step= 1;
var timestep= 40;
var scroll_limit= 0;

var oSlide;
var h;

function scroll_start()
{
h= window.setInterval('scroll()', timestep);
return false;
}

function scroll() {
oSlide.scrollLeft+= step;
if (scroll_limit && oSlide.scrollLeft >= scroll_limit) oSlide.scrollLeft= 0;
}

function scroll_stop()
{
window.clearInterval(h);
}

function StartSlideShow()
{
oSlide= document.getElementById('slide');
if (!oSlide || oSlide.scrollWidth <= oSlide.clientWidth) return;

scroll_start();
}

картинки крутяться в цикле из примерно 20 картинок, как скрипт прокрутил все 20 то он останавливается, помогите сделать чтобы он не останавливался на последней, т.е после последней фотки он брал первую и снова крутил, цикл был бесконечный.

пример: _http://posledova-foto.com/ (там останавливается на последней)

Link to comment
Share on other sites

 Share

×
×
  • 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