(function ($) { 'use strict'; var browserWindow = $(window); // :: 1.0 Preloader Active Code browserWindow.on('load', function () { $('#preloader').fadeOut('slow', function () { $(this).remove(); }); }); // :: 2.0 Nav Active Code if ($.fn.classyNav) { $('#cryptosNav').classyNav(); } // :: 3.0 Sliders Active Code if ($.fn.owlCarousel) { var welcomeSlide = $('.hero-slides'); var aboutSlide = $('.about-slides'); welcomeSlide.owlCarousel({ items: 1, margin: 0, loop: true, nav: true, navText: ['Prev', 'Next'], dots: true, autoplay: true, autoplayTimeout: 5000, smartSpeed: 1000 }); welcomeSlide.on('translate.owl.carousel', function () { var slideLayer = $("[data-animation]"); slideLayer.each(function () { var anim_name = $(this).data('animation'); $(this).removeClass('animated ' + anim_name).css('opacity', '0'); }); }); welcomeSlide.on('translated.owl.carousel', function () { var slideLayer = welcomeSlide.find('.owl-item.active').find("[data-animation]"); slideLayer.each(function () { var anim_name = $(this).data('animation'); $(this).addClass('animated ' + anim_name).css('opacity', '1'); }); }); $("[data-delay]").each(function () { var anim_del = $(this).data('delay'); $(this).css('animation-delay', anim_del); }); $("[data-duration]").each(function () { var anim_dur = $(this).data('duration'); $(this).css('animation-duration', anim_dur); }); aboutSlide.owlCarousel({ items: 1, margin: 0, loop: true, nav: true, navText: ['', ''], dots: true, autoplay: true, autoplayTimeout: 5000, smartSpeed: 1000 }); $('.megamenu-slides').owlCarousel({ items: 1, margin: 0, loop: true, nav: true, navText: ['', ''], dots: true, autoplay: true, autoplayTimeout: 2000, smartSpeed: 1000 }); } // :: 4.0 Gallery Active Code if ($.fn.magnificPopup) { $('.videobtn').magnificPopup({ type: 'iframe' }); } // :: 5.0 ScrollUp Active Code if ($.fn.scrollUp) { browserWindow.scrollUp({ scrollSpeed: 1500, scrollText: '' }); } // :: 6.0 CouterUp Active Code if ($.fn.counterUp) { $('.counter').counterUp({ delay: 10, time: 2000 }); } // :: 7.0 wow Active Code if (browserWindow.width() > 767) { new WOW().init(); } // :: 8.0 prevent default a click $('a[href="#"]').click(function ($) { $.preventDefault() }); })(jQuery);