我正在做一个旋转给定ul中的li的脚本。我想知道当其中一个李的徘徊时,是否有可能打破我的递归。理想情况下,我会创建一个布尔值,无论递归是否应该继续,因为我希望将来有一个视频嵌入其中。我刚刚开始这么做,这基本上就是我所拥有的。
HTML:
<script type="text/javascript">
$(document).ready(function(){
$("#ulRotator").rotate();
});
</script>
</head>
<body>
<ul id="ulRotator" style="width:500px; height:500px;">
<li style="background-color:red;"></li>
<li style="background-color:blue;"></li>
<li style="background-color:black;"></li>
<li style="background-color:green;"></li>
<li style="background-color:grey;"></li>
</ul>
</body>
使用Javascript:
(function( $ ){
var rotator;
var rotatorLi;
$.fn.rotate = function() {
rotator = this;
rotatorLi = rotator.children('li');
rotatorLi.css('width',rotator.css('width')).css('height',rotator.css('height'));
rotator.addClass('rotator');
$(rotatorLi[0]).addClass('current');
moveSlides('right');
};
moveSlides = function(direction){
var current = $(rotator).find('li.current');
var currentPosition = $(rotatorLi).index(current);
var slideCount = $(rotatorLi).length - 1;
var next;
if (direction == 'right'){
if(currentPosition == slideCount){
next = rotatorLi[0];
}else{
next = rotatorLi[currentPosition+1];
}
}
else if (direction == 'left'){
if(currentPosition == 0){
next = rotatorLi[slideCount];
}else{
next = rotatorLi[currentPosition-1];
}
}
$(current).delay(6000).fadeOut(500,function(){
$(current).removeClass('current');
$(next).addClass('current');
$(next).css('display','block');
moveSlides(direction);
});
};
})( jQuery );
CSS
.rotator li
{
position:absolute;
z-index:0;
display::block !important;
list-style-type:none;
}
li.current
{
z-index:1 !important;
}
另请注意,我认为自己是Javascript的新手,我可能会以一种非常愚蠢的方式解决这个问题而我不知道,任何指针都会受到赞赏。欢呼声。
答案 0 :(得分:1)
我会使用鼠标中的公共函数将abort
之类的变量设置为true,并在moveSlides
的第一行中检查它。如果仅将return
设置为true,则将其设置为true。