//------------------------------------------ //Sticky Header //------------------------------------------ //jQuery for page scrolling feature - requires jQuery Easing plugin $(document).ready(function() { $('li.menu-item a').bind('click', function(event) { var $anchor = $(this); var nav_height = $('.navbar').innerHeight(); $('html, body').stop().animate({ scrollTop: $($anchor.attr('href')).offset().top - nav_height }, 1500, 'easeInOutExpo'); event.preventDefault(); }); $('body').scrollspy({ target: '.navbar-nav', offset: 60 }) }); $(document).ready(function() { $(window).load(function(){ $(".navbar-wp").sticky({ topSpacing: 0 }); }); }); //------------------------------------------ //wow-animated //------------------------------------------ $(document).ready(function() { wow = new WOW({ boxClass: 'wow', // animated element css class (default is wow) animateClass: 'animated', // animation css class (default is animated) offset: 100, // distance to the element when triggering the animation (default is 0) mobile: true, // trigger animations on mobile devices (true is default) live: true // consatantly check for new WOW elements on the page (true is default) }) wow.init(); }); //------------------------------------------ //progress-bar //------------------------------------------ $(document).ready(function() { $('.progress .progress-bar').progressbar({display_text: 'fill'}); }); //------------------------------------------ //scroll-top //------------------------------------------ $(".ti_scroll").hide(); $(function () { $(window).scroll(function () { if ($(this).scrollTop() > 500) { $('.ti_scroll').fadeIn(); } else { $('.ti_scroll').fadeOut(); } }); $('a.ti_scroll').click(function () { $('body,html').animate({ scrollTop: 0 }, 800); return false; }); });