Guest User

Untitled

a guest
Mar 20th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. /////////GALLERY START////////////////
  2. $('.portfolio-categories_item a').click(function() {
  3. $('.portfolio-categories_item').removeClass('selected');
  4. $(this).parent('li').addClass('selected');
  5.  
  6. thisItem = $(this).attr('rel');
  7. if(thisItem != 'all') {
  8. $('.gallery-item[rel='+thisItem+']').slideDown(1000);
  9. $('.gallery-item[rel!='+thisItem+']').slideUp(1000);
  10. } else {
  11. $('.gallery-item').slideDown(1000);
  12. }
  13. return false;
  14. });
  15. /////////GALLERY end////////////////
  16. //html
  17. ul.portfolio-categories
  18. li.portfolio-categories_item.selected
  19. a(href="#" rel="all") All Works
  20. li.portfolio-categories_item
  21. a(href="#" rel="print") Print
  22. ...
  23. #gallery
  24. div(rel="print").gallery-item
  25. div(rel="html").gallery-item
Add Comment
Please, Sign In to add comment