(function($){ //create closure so we can safely use $ as alias for jQuery $(document).ready(function(){ "use strict"; /*-----------------------------------------------------------------------------------*/ /* Superfish Menu /*-----------------------------------------------------------------------------------*/ // initialise plugin if ($(window).width() >= 960) { var example = $('.sf-menu').superfish({ //add options here if required delay: 100, speed: 'fast', autoArrows: false }); } /*-----------------------------------------------------------------------------------*/ /* Tabs /*-----------------------------------------------------------------------------------*/ $('.content-block .tabs').tabslet({ mouseevent: 'hover', attribute: 'tab', animation: false }); $('.widget_tabs .tabs').tabslet({ mouseevent: 'click', attribute: 'href', animation: false }); $(window).load(function() { // executes when complete page is fully loaded, including all frames, objects and images $("#featured-slider .entry-header").fadeIn('1000'); $("#featured-slider .ribbon").fadeIn('1000'); $(".custom-share").fadeIn('1000'); $("#featured-grid .entry-header").fadeIn('1000'); $(".bottom-right").fadeIn('1000'); $(".widget_posts_thumbnail .entry-wrap").fadeIn('1000'); $(".breadcrumbs.is_zhuanti h1").fadeIn('1000'); //$(".sidebar .widget_tabs").fadeIn('1000'); $('.primary-block-7 .post-big').matchHeight({ byRow: true }); }); $(".widget_media_gallery .owl-carousel").fadeIn('1000'); $("#primary .entry-content .owl-carousel").fadeIn('1000'); /*-----------------------------------------------------------------------------------*/ /* Back to Top /*-----------------------------------------------------------------------------------*/ // hide #back-top first //$("#back-top").hide(); $(function () { // fade in #back-top $(window).scroll(function () { if ($(this).scrollTop() > 100) { $('.bottom-right #back-top.bottom-icon').css('visibility','visible'); } else { $('.bottom-right #back-top.bottom-icon').css('visibility','hidden'); } }); // scroll body to 0px on click $('#back-top').click(function () { $('body,html').animate({ scrollTop: 0 }, 400); return false; }); }); /*-----------------------------------------------------------------------------------*/ /* Misc. /*-----------------------------------------------------------------------------------*/ $('.widget_ad .widget-title').fadeIn("100"); /*-----------------------------------------------------------------------------------*/ /* Mobile Search /*-----------------------------------------------------------------------------------*/ /* Mobile Search */ $('.search-icon > .fa-search').click(function(){ $('.header-search').slideDown('fast', function() {}); $('.search-icon > .fa-search').toggleClass('active'); $('.search-icon > .fa-close').toggleClass('active'); }); $('.search-icon > .fa-close').click(function(){ $('.header-search').slideUp('fast', function() {}); $('.search-icon > .fa-search').toggleClass('active'); $('.search-icon > .fa-close').toggleClass('active'); }); }); })(jQuery);