custom.js 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. (function ($) {
  2. "use strict";
  3. // PRE LOADER
  4. $(window).load(function(){
  5. $('.preloader').fadeOut(1000); // set duration in brackets
  6. });
  7. // navigation Section
  8. $('.navbar-collapse a').on('click',function(){
  9. $(".navbar-collapse").collapse('hide');
  10. });
  11. // Parallax Js
  12. function initParallax() {
  13. $('#home').parallax("50%", 50);
  14. $('#service').parallax("50%", 40);
  15. $('#about').parallax("50%", 20);
  16. $('#work').parallax("50%", 30);
  17. $('#contact').parallax("50%", 10);
  18. }
  19. initParallax();
  20. // smoothscroll js
  21. $(function() {
  22. $('#home a').bind('click', function(event) {
  23. var $anchor = $(this);
  24. $('html, body').stop().animate({
  25. scrollTop: $($anchor.attr('href')).offset().top - 49
  26. }, 1000);
  27. event.preventDefault();
  28. });
  29. });
  30. // WOW Animation js
  31. new WOW({ mobile: false }).init();
  32. })(jQuery);