如果我在同一个拇指上单击两次,图像会淡出但不会再淡入。最初我会喜欢它,所以当拇指处于活动状态时,如果可能的话,它是不可选择的。任何帮助都会很棒,谢谢。
这是我在说什么的 jsfiddle。 http://jsfiddle.net/vAzSn/5/
$('.thumbs ul li').css('opacity', '.5');
$('.thumbs ul li:first-child').addClass('current');
$('.projectview').children().hide();
$('.projectview').children("section").first().show();
$('.thumbs ul li').click(function () {
// Show info
var thumb = $(this).attr('class');
var partner = $('.' + thumb + 'info');
$('.projectview').children().fadeOut();
partner.fadeIn();
// Tab opacity
$(".current").removeClass("current");
$(this).addClass("current");
});