base.js 306 B

1234567891011121314
  1. (function ($) {
  2. "use strict";
  3. // PRE loader
  4. $(window).on('load', function () {
  5. $('.preloader').fadeOut(1000);
  6. });
  7. $(window).on('load', function () {
  8. AOS.init({
  9. easing: 'ease',
  10. duration: 1000,
  11. once: true
  12. });
  13. });
  14. })(jQuery);