Сообщение от Янковиц
|
у меня пять слайдов, а с 4 прыгает на первую
|
Так у тебя такой алгоритм...
Вот про что я писал ранее
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=windows-1251' />
<script src='https://code.jquery.com/jquery-latest.js'></script>
<!--
<script src="https://code.angularjs.org/1.3.9/angular.min.js"></script>
<script src="https://code.angularjs.org/1.3.9/angular-route.js"></script>
-->
<style type='text/css'>
ul > li {
display: none;
}
ul > li.on {
display: list-item;
}
</style>
<script type='text/javascript'>
$(function(){
setInterval(function(){
var o=$('ul > .on').next();
$('ul > .on').removeClass('on');
if (o.length==0) {
$('ul > li:first-child').addClass('on');
} else {
o.addClass('on');
};
},2000);
});
</script>
</head>
<body>
<ul>
<li class='on'>0</li>
<li>1</li>
<li>2</li>
<li>3</li>
</ul>
</body>
</html>