/* * Slider Script */ jQuery(document).ready(function() { var owl = jQuery('.slider-version-one'); owl.owlCarousel({ nav: owl.children().length > 1, navText: ["",""], loop: owl.children().length > 1, autoplayTimeout: 5000, margin: 0, animateIn: "bounceIn", animateOut: "bounceOut", autoplay: 7000, items:1, smartSpeed:450, autoHeight: true, responsive: { 0: { items: 1 }, 600: { items: 1 }, 1000: { items: 1 } } }) // Add/Remove .focus class for accessibility jQuery('.navbar-default').find( 'a' ).on( 'focus blur', function() { jQuery( this ).parents( 'ul, li' ).toggleClass( 'focus' ); } ); }) /* Text Rotator Function */ jQuery(document).ready(function(){ jQuery(".demo1 .rotate").textrotator({ animation: "fade", speed: 1000 }); }); /* Sticky Header Function */ jQuery(function() { jQuery('a.page-scroll').bind('click', function(event) { var $anchor = $(this); var nav_height = $('.navbar').innerHeight(); jQuery('html, body').stop().animate({ scrollTop: $($anchor.attr('href')).offset().top - nav_height }, 1500, 'easeInOutExpo'); event.preventDefault(); }); jQuery('body').scrollspy({ target: '.sticky-nav', offset: 60 }) }); jQuery(document).ready(function() { jQuery(window).load(function(){ jQuery(".sticky-nav").sticky({ topSpacing: 0 }); }); }); /* Top Scroller Function */ jQuery(".top-scroll").hide(); jQuery(function () { jQuery(window).scroll(function () { if (jQuery(this).scrollTop() > 500) { jQuery('.top-scroll').fadeIn(); } else { jQuery('.top-scroll').fadeOut(); } }); jQuery('a.top-scroll').click(function () { jQuery('body,html').animate({ scrollTop: 0 }, 800); return false; }); }); /* //wow-animated */ jQuery(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(); }); /* // Search */ jQuery(document).ready(function(){ var submitIcon = jQuery('.searchbox-icon'); var inputBox = jQuery('.searchbox-input'); var searchBox = jQuery('.searchbox'); var isOpen = false; submitIcon.click(function(){ if(isOpen == false){ searchBox.addClass('searchbox-open'); inputBox.focus(); isOpen = true; } else { searchBox.removeClass('searchbox-open'); inputBox.focusout(); isOpen = false; } }); submitIcon.mouseup(function(){ return false; }); searchBox.mouseup(function(){ return false; }); jQuery(document).mouseup(function(){ if(isOpen == true){ jQuery('.searchbox-icon').css('display','block'); submitIcon.click(); } }); }); function buttonUp(){ var inputVal = jQuery('.searchbox-input').val(); inputVal = jQuery.trim(inputVal).length; if( inputVal !== 0){ jQuery('.searchbox-icon').css('display','none'); } else { jQuery('.searchbox-input').val(''); jQuery('.searchbox-icon').css('display','block'); } }