top_content 関数を #test および #test1 とクロス フェードさせたいと考えています。現在、div #test と #test1 は単純なトグルを使用していますが、フェードアウトとフェードインの両方を同時に行いたいと考えています。
$(document).ready(function () {
$('#test, #test1').hide();
$('.home').click(function () {
var id = $(this).html().toLowerCase();
var $top_content = $('#' + id + ':not(:visible)');
if ($('.current').length === 0) {
toggleContent($top_content);
} else {
$('.current').toggle(400, function () {
toggleContent($top_content);
});
}
});
function toggleContent(top_content) {
top_content.toggle(400);
$('.current').removeClass('current');
top_content.addClass('current');
}
$("a.home").click(function () {
$('.active').not(this).removeClass('active');
$(this).toggleClass('active');
});
});