我希望 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');
});
});