我知道这个话题已被讨论过,但其中任何一个解决方案都没有奏效,或者我没有正确应用它们,这比预期的要长。
当我的鼠标未超过指定区域时,我正在尝试遍历我的数组。我可以开始循环,但不要停止。
提前感谢您的帮助。
<script type="text/javascript">
jQuery(document).ready(function($){
var myArray = new Array( "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15" );
var firstNumber, incrementDelay = 5000, newIncrementValue = 1, timers = new Array();
function loadCurrentArrayNumber(first){
$('.image').eq(first).each(function(){
if($('.projects_holder_outer').is(":hover")){return false; }
var $this = $(this);
var bottom = $this.find('img').height();
$this.find('.image_hover').css('bottom', -bottom);
var top = $this.find('span.text_inner').height();
$this.find('.text_holder').css('top', -top-10);
$this.find('.text_holder').css('visibility', 'visible');
$this.find('.image_hover').css('visibility', 'visible');
$this.mouseenter(function(){
//clear existing
$('.image_hover').stop().animate({'bottom': '-188px'}, 200);
$('span.text_holder').stop().animate({'top': '-67px'}, 100);
//show new one
$this.find('.image_hover').stop().animate({'bottom': '0px'}, 200, function(){
$this.find('span.text_holder').stop().animate({'top': bottom/2-top/2}, 300);
});
})
// add a timer to the array
/*timers.push(setTimeout(function() {
$this.trigger('mouseenter');
}, 1000*newIncrementValue));
newIncrementValue++;*/
$this.delay(1000*newIncrementValue).queue(function(){
//clear existing
$('.image_hover').stop().animate({'bottom': '-188px'}, 200);
$('span.text_holder').stop().animate({'top': '-67px'}, 100);
$(this).trigger('mouseenter');
$(this).dequeue();
});
newIncrementValue++;
});
}
$('.projects_holder_outer').mouseleave(function() {
//$('.image_hover').stop().animate({'bottom': '-188px'}, 200);
//$('span.text_holder').stop().animate({'top': '-67px'}, 100);
}, function() {
newIncrementValue = 1;
for ( var i = 0; i < myArray.length; ++i) {
loadCurrentArrayNumber(myArray[ i ]);
}
})
});
答案 0 :(得分:0)
我找到了链接here,这就是我最终想出的结果。它按预期工作。
<script type="text/javascript">
jQuery(document).ready(function($){
var firstNumber=15, timeOut, pause=false;
function loadCurrentArrayNumber(){
if (pause) { return false; } // if hovered : stop 'timeOut'
clearTimeout(timeOut);
// add a timer to the array
timeOut = setTimeout(function() {
++firstNumber;
if(firstNumber > 14){firstNumber=0;}
$('.image').eq(firstNumber).each(function(){
var $this = $(this);
var bottom = $this.find('img').height();
$this.find('.image_hover').css('bottom', -bottom);
var top = $this.find('span.text_inner').height();
$this.find('.text_holder').css('top', -top-10);
$this.find('.text_holder').css('visibility', 'visible');
$this.find('.image_hover').css('visibility', 'visible');
$this.mouseenter(function(){
//clear existing
$('.image_hover').stop().animate({'bottom': '-188px'}, 200);
$('span.text_holder').stop().animate({'top': '-67px'}, 100);
//show new one
$this.find('.image_hover').stop().animate({'bottom': '0px'}, 200, function(){
$this.find('span.text_holder').stop().animate({'top': bottom/2-top/2}, 300);
});
})
// trigger the mouse function
$this.trigger('mouseenter');
$('.projects_holder_outer').trigger('mouseleave');
});
}, 2000);
}
loadCurrentArrayNumber();
$('.projects_holder_outer').hover(function() {
pause = true;
clearTimeout(timeOut);
}, function() {
pause = false;
loadCurrentArrayNumber();
})
});