(function($) { "use strict"; /* ================================= === STICKY HEADER ==== =================================== */ jQuery(window).on('load', function() { jQuery(".ta-main-nav").sticky({ topSpacing: 0 }); }); jQuery(document).ready(function() { jQuery('.nav li.ta-search-box').hover(function() { jQuery(this).addClass('open'); }, function() { jQuery(this).removeClass('open'); }); }); /* ================================= === COUNTER UP ==== =================================== */ function counterUp() { jQuery('.counter').counterUp({ delay: 10, time: 1000 }); } counterUp(); /* ================================= === PROGRESSBAR ==== =================================== */ function progressbar() { jQuery('.progress .progress-bar').progressbar({display_text: 'fill'}); } progressbar(); /* ================================= === PORTFOLIO LIGHTBOX ==== =================================== */ function portfolio() { jQuery('.portfolio-view').magnificPopup({ type: 'image', gallery:{ enabled:true } }); } portfolio(); /* ================================= === SCROLL TOP ==== =================================== */ jQuery(".ta_upscr").hide(); function taupr() { jQuery(window).on('scroll', function() { if ($(this).scrollTop() > 500) { $('.ta_upscr').fadeIn(); } else { $('.ta_upscr').fadeOut(); } }); $('a.ta_upscr').on('click', function() { $('body,html').animate({ scrollTop: 0 }, 800); return false; }); } taupr(); })(jQuery);