-5
"約"または "連絡先"リンクがクリックされるたびに.thumb
<div>
を非表示にするif/else文を記述しようとしています。 .thumb
<div>
のすべてをスライドさせてください。 /他statementsIはあなたが与えることができる任意のヘルプははるかに高く評価されるだろう、右の構文を理解するように見えるカント場合if/else文
http://dl.dropbox.com/u/14080718/Final/UITabs15.html
私は多くの経験の書き込みを持っていません。
$(function(){
$('.thumb').hide();
$('.subnav').click(function(){
var $menuelement = $('.thumb').eq($(this).closest("li").index());//find the matching nth element in the menu
if($menuelement.hasClass('active')){//if clicked element is already expanded
$menuelement.removeClass('active').slideUp();//remove the active class and hide it
} else {//otherwise,clicked element is not already expanded...
if ($('.active').length>0) {//...but another element is expanded
$('.active').removeClass('active').slideUp(function(){
$menuelement.addClass('active').slideDown();//add the active class and show it
});
} else {//another element is not expanded
$menuelement.addClass('active').slideDown();//add the active class and show it
}
}
});
});
ソースコードを質問に投稿してください。 – deceze
あなたの質問に試したコードのいくつかを追加できますか? – ThinkingStiff
jQueryは言語ではありません。 – Ryan