custom.js 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. (function ($) {
  2. "use strict";
  3. // PRE LOADER
  4. $(window).load(function(){
  5. $('.preloader').delay(500).slideUp('slow'); // set duration in brackets
  6. });
  7. // MENU
  8. $('.navbar-collapse a').on('click',function(){
  9. $(".navbar-collapse").collapse('hide');
  10. });
  11. $(window).scroll(function() {
  12. if ($(".navbar").offset().top > 50) {
  13. $(".navbar-fixed-top").addClass("top-nav-collapse");
  14. } else {
  15. $(".navbar-fixed-top").removeClass("top-nav-collapse");
  16. }
  17. });
  18. // PARALLAX JS
  19. function initParallax() {
  20. $('#home').parallax("60%", 100);
  21. $('#about').parallax("100%", 80);
  22. $('#project').parallax("80%", 60);
  23. $('#team').parallax("40%", 40);
  24. $('#contact').parallax("20%", 20);
  25. }
  26. initParallax();
  27. // Owl Carousel
  28. var owl = $("#owl-team");
  29. owl.owlCarousel({
  30. autoPlay: 6000,
  31. items : 4,
  32. itemsDesktop : [1199,3],
  33. itemsDesktopSmall : [979,3],
  34. itemsTablet: [768,2],
  35. itemsTabletSmall: false,
  36. itemsMobile : [479,1],
  37. Speedfast: 200,
  38. });
  39. })(jQuery);