次のように、クラスと2つのコンテナを含むサムネイルコンテナがたくさんあります。
<div id="color_dance" class="thumb">
<img class="thumb_img" src="http://www.klossal.com/portfolio/tile_dance_color.jpg">
<div class="thumb_info info_color_2"><p class="tile_info_1"> Space Series</p><p class="tile_info_2">Photoshop, Wacom Tablet</p></div>
</div>
.thumb_info
それをクリックすると、すべての要素のクラスをからinfo_color_3
に切り替えたいのですがinfo_color_2
、クリックしたものとは逆に、クラスをからinfo_color_2
に切り替えますinfo_color_3
。
これは私が思いついたJSですが、機能しておらず、理由はわかりません。
$(".thumb").click(function() {
$(".thumb_info").not(this).switchClass("info_color_3", "info_color_2", 300);
$(this).find('.thumb_info').
function() {
$(this).switchClass("info_color_2", "info_color_3", 300);
});
});