我正在尝试淡入淡出一个元素,但稍微暂停一下,它没有暂停,但是当我使用jQuery delay() - 函数添加暂停时,它只是在第一个之后停止淡出();
以下是代码:
$('#headerimage2').each(function(){
for(i=1;i<50;i++){
$(this).fadeOut(1200).delay(1000).fadeIn(1000).delay(1000);
}
});
为什么delay() - 函数(第一个和第二个)都会破坏循环?
答案 0 :(得分:4)
在黑暗中拍摄,但你确定你使用的是1.4版本的库。这是该版本的新功能。
答案 1 :(得分:1)
您发布的代码在firefox,safari和chrome中与最新的jquery完美配合:
<!DOCTYPE html>
<html>
<head>
<style>
div { width: 60px; height: 60px; float: left; }
.first { background-color: #3f3; }
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<p><button>Run</button></p>
<div id='headerimage2' class="first"></div>
<script>
$("button").click(function() {
$('#headerimage2').each(function(){
for(i=1;i<5;i++){
$(this).fadeOut(100).delay(500).fadeIn(100).delay(500);
}
});
});
</script>
</body>
</html>