Letlabo Nature Reserve
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

setting.js 890B

123456789101112131415161718192021222324252627282930
  1. jQuery.noConflict();
  2. jQuery(document).ready(function($){
  3. if (jQuery().quicksand) {
  4. // Clone applications to get a second collection
  5. var $data = $(".portfolio-area").clone();
  6. //NOTE: Only filter on the main portfolio page, not on the subcategory pages
  7. $('.portfolio-categ li').click(function(e) {
  8. $(".filter li").removeClass("active");
  9. // Use the last category class as the category to filter by. This means that multiple categories are not supported (yet)
  10. var filterClass=$(this).attr('class').split(' ').slice(-1)[0];
  11. if (filterClass == 'all') {
  12. var $filteredData = $data.find('.item-thumbs');
  13. } else {
  14. var $filteredData = $data.find('.item-thumbs[data-type=' + filterClass + ']');
  15. }
  16. $(".portfolio-area").quicksand($filteredData, {
  17. duration: 600,
  18. adjustHeight: 'auto'
  19. }
  20. $(this).addClass("active");
  21. return false;
  22. });
  23. }//if quicksand
  24. });