我不确定这是否可以在jQuery中使用,因为这只是动画领域的边界,但我想我会试一试。
我希望每个onclick中的一个部分中有多个元素淡入淡出,并且一旦该部分中的最后一个元素出现,整个部分在点击时淡出并被替换为新部分。
以下是我尝试过的内容,但代码不起作用:http://jsfiddle.net/tuckyeah/xht9qbao/11/
HTML
<div class="section-0">
<div class="fadeIn">
<p>I should show up.</p>
</div>
<div class="fadeIn">
<p>Then me, then we should both disappear when we're clicked on.</p>
</div>
</div>
<div class="section-1">
<div class="fadeIn">
<p>Then I should show up next.</p>
</div>
<div class="fadeIn">
<p>Followed by me, then we should both fade out too when we're clicked.</p>
</div>
</div>
脚本
$(document).ready(function () {
$('.fadeIn').hide();
$(document).on('click', function () {
$('.fadeIn:hidden:first').fadeIn('slow');
})
.click();
if($('.section-0 fadeIn:last-child').is(':visible') ) {
$('.section-0').on('click', function() {
$('.section-0').fadeOut('slow', function() {
$('.section-1').delay('slow').fadeIn();
});
});
}
});
谢谢!
答案 0 :(得分:0)
用以下代码替换您的JS代码:
var fadeInNo = 0;
var fadeInSection = 0;
$(document).ready(function () {
$('.fadeIn').hide();
$(document).on('click', function () {
if(fadeInNo == 2) {
$('.section-' + fadeInSection).fadeOut('slow');
fadeInNo = 0;
fadeInSection++;
}
else {
$('.section-' + fadeInSection + ' .fadeIn:eq(' + fadeInNo + ')').fadeIn('slow');
fadeInNo++;
}
});
});
答案 1 :(得分:0)
我按照我的理解做到了。这是 - jsfiddle
$(document).ready(function () {
$('.fadeIn:gt(0)').hide();
var $s1 = $('.section-1');
$('.section-0').on('click',function(){
var $el = $(this);
$el.find('>div:last-of-type').fadeIn();
$el.on('click', function () {
$el.fadeOut(300, function () {
$s1.find('>div:first-of-type').fadeIn();
});
});
});
$s1.on('click',function(){
var $el = $(this);
$el.find('>div:last-of-type').fadeIn();
$el.on('click', function () {
$el.fadeOut(300);
});
});
});
答案 2 :(得分:0)
这是一种方式:
$('.fadeIn').hide().click(function () {
if ($(this).closest('.section').find('.fadeIn:visible').length < $(this).closest('.section').find('.fadeIn').length) {
$(this).parent().find('.fadeIn:not(:visible):first').fadeIn('slow');
} else {
$(this).closest('.section').fadeOut('slow', function () {
$(this).next().find('.fadeIn:first').fadeIn();
})
}
});
$('.fadeIn:hidden:first').fadeIn('slow');
<强> jsFiddle example 强>