jQueryでできるフィルタリングのご紹介です。 以下がコードサンプルになります。 ▼JavaScript $("button").click(function () { var image = $(this).attr("value"); $("#list li").each(function () { $(this).animate({ "opacity": 0 }, 300, function () { $(this).hide(); if ($(this).hasClass(image) || image == "all") { $(this).show(); $(this).animate({ "opacity": 1 }, 300); } }); }); }); }); ▼CSS button{ font-size:90%; margin-right:10px; display