golden hour
/home/doctorbruno/public_html/doc-noc.com/wp-content/themes/fitness-hub/assets/js
⬆️ Go Up
Upload
File/Folder
Size
Actions
acme-admin.js
13.89 KB
Del
OK
fitness-hub-custom.js
7.37 KB
Del
OK
Edit: fitness-hub-custom.js
jQuery(document).ready(function($){ var at_window = $(window); var at_body = $('body'); function homeFullScreen() { var homeSection = $('#at-banner-slider'); var windowHeight = at_window.outerHeight(); if (homeSection.hasClass('home-fullscreen')) { $('.home-fullscreen').css('height', windowHeight); } } //make slider full width homeFullScreen(); //window resize at_window.resize(function () { homeFullScreen(); }); /*slick*/ $('.acme-slick-carausel').each(function() { var at_featured_img_slider = $(this); var slidesToShow = parseInt(at_featured_img_slider.data('column')); var slidesToScroll = parseInt(at_featured_img_slider.data('column')); var prevArrow =at_featured_img_slider.closest('.widget').find('.at-action-wrapper > .prev'); var nextArrow =at_featured_img_slider.closest('.widget').find('.at-action-wrapper > .next'); at_featured_img_slider.css('visibility', 'visible').slick({ slidesToShow: slidesToShow, slidesToScroll: slidesToScroll, autoplay: true, adaptiveHeight: true, cssEase: 'linear', arrows: true, prevArrow: prevArrow, nextArrow: nextArrow, responsive: [ { breakpoint: 768, settings: { slidesToShow: ( slidesToShow > 1 ? slidesToShow - 1 : slidesToShow ), slidesToScroll: ( slidesToScroll > 1 ? slidesToScroll - 1 : slidesToScroll ) } }, { breakpoint: 480, settings: { slidesToShow: ( slidesToShow > 2 ? slidesToShow - 2 : slidesToShow ), slidesToScroll: ( slidesToScroll > 2 ? slidesToScroll - 2 : slidesToScroll ) } } ] }); }); $('.featured-slider').show().slick({ autoplay: true, adaptiveHeight: true, autoplaySpeed: 3000, speed: 700, cssEase: 'linear', fade: true, prevArrow: '<i class="prev fa fa-angle-left"></i>', nextArrow: '<i class="next fa fa-angle-right"></i>' }); /*parallax scolling*/ $('a[href*="\\#"]').click(function(event){ var at_offset= $.attr(this, 'href'); var id = at_offset.substring(1, at_offset.length); if ( ! document.getElementById( id ) ) { return; } if( $( at_offset ).offset() ){ $('html, body').animate({ scrollTop: $( at_offset ).offset().top-$('.at-navbar').height() }, 1000); } }); /*bootstrap sroolpy*/ $("body").scrollspy({target: ".at-sticky", offset: $('.at-navbar').height()+50 } ); /*widget slider*/ $('.acme-widget-carausel').show().slick({ autoplay: true, autoplaySpeed: 3000, speed: 700, cssEase: 'linear', fade: true, prevArrow: '<i class="prev fa fa-angle-left"></i>', nextArrow: '<i class="next fa fa-angle-right"></i>' }); //Select 2 js init if (typeof select2 !== 'undefined' && $.isFunction(select2)){ $('.woocommerce-ordering .orderby').select2({ minimumResultsForSearch: -1 }); } function stickyMenu() { var scrollTop = at_window.scrollTop(); if ( scrollTop > 250 ) { $('.fitness-hub-sticky').addClass('at-sticky'); $('.sm-up-container').show(); } else { $('.fitness-hub-sticky').removeClass('at-sticky'); $('.sm-up-container').hide(); } } //What happen on window scroll stickyMenu(); at_window.on("scroll", function (e) { setTimeout(function () { stickyMenu(); }, 300) }); function accordion() { // Runs when the image button is clicked. jQuery('body').on('click','.accordion-title', function(e){ var $this = $(this), accordion_content = $this.closest('.accordion-content'), accordion_item = $this.closest('.accordion-item'), accordion_details = accordion_item.find('.accordion-details'), accordion_all_items = accordion_content.find('.accordion-item'), accordion_icon = accordion_content.find('.accordion-icon'); $('.accordion-title').removeClass('active'); $this.addClass('active'); accordion_icon.each(function () { $(this).addClass('fa-plus'); $(this).removeClass('fa-minus'); }); accordion_all_items.each(function () { $(this).find('.accordion-details').slideUp(); }); if( accordion_details.is(":visible")){ accordion_details.slideUp(); $this.find('.accordion-icon').addClass('fa-plus'); $this.find('.accordion-icon').removeClass('fa-minus'); } else{ accordion_details.slideDown(); $this.find('.accordion-icon').addClass('fa-minus'); $this.find('.accordion-icon').removeClass('fa-plus'); } e.preventDefault(); }); } function at_site_origin_grid() { $('.panel-grid').each(function(){ var count = $(this).children('.panel-grid-cell').length; if( count < 1 ){ count = $(this).children('.panel-grid').length; } if( count > 1 ){ $(this).addClass('at-grid-full-width'); } }); } accordion(); at_site_origin_grid(); //footer sticky function stickyFooter(){ if ($(window).width() > 992) { //alert('Larger than 960'); var footer_height = $('footer.site-footer').height(); $('#page').css('margin-bottom', footer_height); } else { //alert('Smaller than 960'); } } stickyFooter(); at_window.resize(function () { stickyFooter(); }); /*animation with wow*/ if(typeof WOW !== 'undefined' && at_body.hasClass('acme-animate')){ eb_wow = new WOW({ boxClass: 'init-animate' } ); eb_wow.init(); } }); /** * Skip link focus fixed */ ( function() { var isIe = /(trident|msie)/i.test( navigator.userAgent ); if ( isIe && document.getElementById && window.addEventListener ) { window.addEventListener( 'hashchange', function() { var id = location.hash.substring( 1 ), element; if ( ! ( /^[A-z0-9_-]+$/.test( id ) ) ) { return; } element = document.getElementById( id ); if ( element ) { if ( ! ( /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) ) ) { element.tabIndex = -1; } element.focus(); } }, false ); } }() );
Save