script.js 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. * Scroll to the top
  3. */
  4. $(window).bind("scroll",display);
  5. function display () {
  6. if($(document).scrollTop()>300) {
  7. //$("#top").show();
  8. $("#top").fadeIn(300);
  9. }else {
  10. //$("#top").hide();
  11. $("#top").fadeOut(300);
  12. }
  13. }
  14. /*
  15. * Tab of posts
  16. */
  17. $(document).ready(function () {
  18. var tabContainer = $(".posts-tabs");
  19. if (tabContainer.length) {
  20. $(".tab-two").bind("click", showTabTwo);
  21. $(".tab-one").bind("click", showTabOne);
  22. }
  23. function showTabOne () {
  24. $(".tab-one").addClass("active");
  25. $(".tab-two").removeClass("active");
  26. $(".tab-two-list").addClass("tab-hidden");
  27. $(".tab-one-list").removeClass("tab-hidden");
  28. $(".page-holder-two").addClass("tab-hidden");
  29. $(".page-holder-one").removeClass("tab-hidden");
  30. }
  31. function showTabTwo () {
  32. $(".tab-two").addClass("active");
  33. $(".tab-one").removeClass("active");
  34. $(".tab-one-list").addClass("tab-hidden");
  35. $(".tab-two-list").removeClass("tab-hidden");
  36. $(".page-holder-one").addClass("tab-hidden");
  37. $(".page-holder-two").removeClass("tab-hidden");
  38. }
  39. })
  40. /*
  41. * Pagination
  42. */
  43. $(function(){
  44. /* initiate the plugin */
  45. $("div.page-holder-one").jPages({
  46. containerID : "pag-itemContainer-one",
  47. previous: "«",
  48. next: "»",
  49. perPage : 5, /* num of items per page */
  50. startPage : 1,
  51. startRange : 1,
  52. midRange : 4,
  53. endRange : 1,
  54. direction : "auto"
  55. });
  56. $("div.page-holder-two").jPages({
  57. containerID : "pag-itemContainer-two",
  58. previous: "«",
  59. next: "»",
  60. perPage : 5, /* num of items per page */
  61. startPage : 1,
  62. startRange : 1,
  63. midRange : 4,
  64. endRange : 1,
  65. direction : "auto"
  66. });
  67. });