芝麻web文件管理V1.00
编辑当前文件:/home/felaukpo/public_html/wp-content/themes/pixelpiernyc/vamtam/assets/js/custom-animations.js
( function( $, undefined ) { "use strict"; window.VAMTAM = window.VAMTAM || {}; // Namespace window.VAMTAM.CUSTOM_ANIMATIONS = {}; window.VAMTAM.CUSTOM_ANIMATIONS = { init: function () { // DOM is not ready yet. }, onDomReady: function () { this.VamtamCustomAnimations.init(); this.VamtamCustomAnimations.scrollBasedAnims(); }, // Handles custom animations. VamtamCustomAnimations: { init: function() { this.registerAnimations(); this.utils.watchScrollDirection(); // this.observedAnims(); // Disabled in favor of elementorFrontend.waypoint(). }, registerAnimations: function () { var self = this; // Register animations here. var animations = [ // 'stickyHeader', // Same name as function. 'cursorAnimation', ]; animations.forEach( function( animation ) { self[ animation ].apply( self ); } ); }, // A sticky header animation. stickyHeader: function () { var $target = $( '.vamtam-sticky-header' ), topScrollOffsetTrigger = 10, _self = this; if ( ! $target.length ) { return; } if ( $target.length > 1 ) { // There should only be one sticky header. $target = $target[ 0 ]; } ( function () { // IIFE for closure so $target is available in rAF. var prevAnimState, isTransparentHeader = $( $target ).hasClass( 'vamtam-sticky-header--transparent-header' ), stickyHeight = $( $target ).innerHeight(); // state: fixed, scrolled up (not visible). var fixedHiddenState = function () { $( $target ).removeClass( 'vamtam-sticky-header--fixed-shown' ); if ( ! $( $target ).hasClass( 'vamtam-sticky-header--fixed-hidden' ) ) { $( $target ).addClass( 'vamtam-sticky-header--fixed-hidden' ); } prevAnimState = 'fixedHiddenState'; }; // state: fixed, scrolled down (visible). var fixedShownState = function () { $( $target ).removeClass( 'vamtam-sticky-header--fixed-hidden' ); if ( ! $( $target ).hasClass( 'vamtam-sticky-header--fixed-shown' ) ) { $( $target ).addClass( 'vamtam-sticky-header--fixed-shown' ); } prevAnimState = 'fixedShownState'; }; // state: no animation. var noAnimState = function () { $( $target ).removeClass( 'vamtam-sticky-header--fixed-shown' ); $( $target ).removeClass( 'vamtam-sticky-header--fixed-hidden' ); prevAnimState = 'noAnimState'; }; // body-padding normalization. const checkBodyPadding = () => { const leftBodyPadding = $( 'body' ).css( 'padding-left' ), rightBodyPadding = $( 'body' ).css( 'padding-right' ), $headerEl = $( $target ).parents( '[data-elementor-type="header"]').first(); if ( ! $headerEl.length ) { return; } // any body-padding we negate with negative margin. // we apply it on the headerEl cause margins on sticky header mess up the width calc. if ( parseInt( leftBodyPadding ) ) { $headerEl.css( '--vamtam-sticky-mleft', `-${leftBodyPadding}` ); } if ( parseInt( rightBodyPadding ) ) { $headerEl.css( '--vamtam-sticky-mright', `-${rightBodyPadding}` ); } }; checkBodyPadding(); const headerShouldAnimate = () => { // If a link inside the header is being hovered, we don't want to trigger the sticky header. if ( $( $target ).find( 'a:hover' ).length ) { return false; } // If a mega-menu belonging to the header is open, we don't want to trigger the sticky header. if ( $( '.vamtam-header-mega-menu:visible' ).length ) { return false; } return true; }; // Initial phase // If passed the trigger point it should always be at fixed hidden state. const initialScrollPosCheck = ( pageLoad = false ) => { if ( window.pageYOffset >= topScrollOffsetTrigger ) { fixedHiddenState(); } else if ( ! pageLoad ) { // Sometimes the browser's onload scroll comes after the initialScrollPosCheck() so we check on page load jic. Happens mostly when initial scroll pos is after middle of page. window.addEventListener( 'load', function() { if ( ! prevAnimState ) { setTimeout( () => { initialScrollPosCheck( true ); }, 10 ); } } ); } }; initialScrollPosCheck(); var scrollTimer = null, lastScrollYPause = window.scrollY, lastDirection; // Used to check if the user has scrolled up far enough to trigger the sticky header. window.addEventListener( 'scroll', function( e ) { if ( scrollTimer !== null ) { clearTimeout( scrollTimer ); } // If the user hasn't scrolled for 500ms we use that as the new Y point. scrollTimer = setTimeout( function() { lastScrollYPause = window.scrollY; }, 500 ); var anim = window.VAMTAM.debounce( function() { if ( e.target.nodeName === '#document' ) { if ( ! headerShouldAnimate() ) { // Don't animate, but go to fixedShown state for the transparent header. if ( isTransparentHeader ) { if ( prevAnimState !== 'fixedShownState' ) { fixedShownState(); } } return; } var direction = _self.utils.getScrollDirection(); if ( lastDirection !== direction ) { lastScrollYPause = window.scrollY; } lastDirection = direction; const scrollDifference = Math.abs( window.scrollY - lastScrollYPause ); // Pixels. if ( window.scrollY > stickyHeight && scrollDifference < 20 ) { return; } if ( direction === 'up' ) { if ( window.pageYOffset >= topScrollOffsetTrigger ) { if ( prevAnimState !== 'fixedShownState' ) { fixedShownState(); } } else { if ( prevAnimState !== 'noAnimState' ) { noAnimState(); } } return; } if ( direction === 'down' ) { if ( window.pageYOffset >= topScrollOffsetTrigger || isTransparentHeader ) { // Transparent header gets hidden right away. // Safe-guard for times when the opening of the cart can cause a scroll down and hide the menu (also sliding the cart upwards). var menuCardNotVisible = ! $( $target ).find( '.elementor-menu-cart--shown' ).length; if ( prevAnimState !== 'fixedHiddenState' && menuCardNotVisible ) { fixedHiddenState(); } } } } }, 25 ); if ( window.VAMTAM.isMaxDeviceWidth() ) { requestAnimationFrame( anim ); } else if ( prevAnimState !== 'noAnimState' ) { noAnimState(); } }, { passive: true } ); } )(); }, // Scroll-based anims. scrollBasedAnims: function() { var scrollAnims = [ '[data-settings*="growFromLeftScroll"]', '[data-settings*="growFromRightScroll"]', ]; var animEls = document.querySelectorAll( scrollAnims.join( ', ' ) ); if ( ! animEls.length ) { return; } var observer, entries = {}, _this = this; var cb = function( iOEntries ) { iOEntries.forEach( function( entry ) { var currentScrollY = entry.boundingClientRect.y, isInViewport = entry.isIntersecting, observedEl = entry.target, scrollPercentage = Math.abs( parseFloat( ( entry.intersectionRatio * 100 ).toFixed( 2 ) ) ), prevScrollPercentage = entries[ observedEl.dataset.vamtam_anim_id ].lastScrollPercentage, lastScrollY = entries[ observedEl.dataset.vamtam_anim_id ].lastScrollY, animateEl = entries[ observedEl.dataset.vamtam_anim_id ].animateEl; var animate = function () { window.requestAnimationFrame( function() { animateEl.style.setProperty( '--vamtam-scroll-ratio', scrollPercentage + '%' ); } ); }; if ( isInViewport && lastScrollY !== currentScrollY ) { if( _this.utils.getScrollDirection() === 'down') { if ( prevScrollPercentage < scrollPercentage ) { animate(); } } else { animate(); } } entries[ observedEl.dataset.vamtam_anim_id ].lastScrollY = currentScrollY; entries[ observedEl.dataset.vamtam_anim_id ].lastScrollPercentage = scrollPercentage; } ); }; var buildThresholdList = function() { var thresholds = [], numSteps = 50, i; for ( i = 1.0; i <= numSteps; i++ ) { var ratio = i / numSteps; thresholds.push( ratio ); } thresholds.push( 0 ); return thresholds; }; const thresholds = buildThresholdList(); animEls.forEach( function( el ) { if ( ! observer ) { var options = { root: null, rootMargin: "20% 0% 20% 0%", threshold: thresholds, }; observer = new IntersectionObserver( cb, options ); } // Init. el.style.setProperty( '--vamtam-scroll-ratio', '1%' ); var observeEl; if ( el.classList.contains( 'elementor-widget' ) || el.classList.contains( 'elementor-column' ) ) { // For widgets we observe .elementor-widget-wrap // For columns we observe .elementor-row observeEl = el.parentElement; observeEl.setAttribute('data-vamtam_anim_id', el.dataset.id ); } else { // Sections. // Add scroll anim wrapper. $( el ).before( '
' ); var $wrap = $( el ).prev( '.vamtam-scroll-anim-wrap' ); $( $wrap ).append( el ); observeEl = $wrap[ 0 ]; } entries[el.dataset.id] = { lastScrollY: '', lastScrollPercentage: '', observeEl: observeEl, animateEl: el, }; observer.observe( observeEl ); } ); }, // Theme-specific. cursorAnimation: function() { if ( ! ( 'elementorFrontend' in window ) || ! ( 'isEditMode' in window.elementorFrontend ) || window.elementorFrontend.isEditMode() || this.utils.isTouchDevice() || $( 'body' ).filter( '.no-theme-cursor' ).length || ! ( 'elementorFrontendConfig' in window ) || ! window.elementorFrontendConfig.kit.vamtam_theme_has_theme_cursor ) { return; } $( 'body' ) .append( '
' ) .addClass( 'has-mouse-dot' ); var $mouseDot = $( '#mouseDot' ), mouseX = 0, mouseY = 0, xp = 0, yp = 0; const updateMouseCords = ( e ) => { if ( window.VAMTAM.isBelowMaxDeviceWidth() ) { return; } mouseX = e.clientX; mouseY = e.clientY; }; $( document ).on( 'mousemove mouseenter pointermove', ( e ) => updateMouseCords( e ) ); // Position circle. window.requestAnimationFrame( function () { setInterval( function() { xp += ( ( mouseX - xp ) / 6 ); yp += ( ( mouseY - yp ) / 6 ); $mouseDot.css( { transform: 'translate(' + xp + 'px, ' + yp + 'px)', } ); }, 20 ); } ); // Handler for links. const onMouseOver = function( e ) { let hoveringOverLink, hoveringOverIframe, hoveringOverSwiper; const $target = $( e.target ), target = $target[ 0 ]; if ( e.target.href ) { hoveringOverLink = true; } else if ( e.target.tagName === 'IFRAME' ) { hoveringOverIframe = true; } else { // Check if it's wrapped by a link (common-case). if ( $target.parent( 'a[href]' ).length ) { hoveringOverLink = true; } // < -- Custom Cases -- > // Button. if ( $target.closest( 'a.elementor-button-link[href]' ).length ) { hoveringOverLink = true; } // Swiper const isSwiper = $target.filter( '.swiper-wrapper' ).length, $swiperWrapper = ! isSwiper ? $target.closest( '.swiper-wrapper' ) : [], isSwiperDescendant = $swiperWrapper.length; if ( isSwiper || isSwiperDescendant ) { const swiperWrapper = isSwiper ? target : $swiperWrapper[ 0 ]; // Is the swiper scrollable? if ( swiperWrapper.scrollWidth > swiperWrapper.clientWidth || swiperWrapper.scrollWidth > window.innerWidth ) { hoveringOverSwiper = true; } } } if ( hoveringOverLink ) { window.requestAnimationFrame( function() { $mouseDot.addClass( 'over-link' ); } ); } else { window.requestAnimationFrame( function() { $mouseDot.removeClass( 'over-link' ); } ); } if ( hoveringOverIframe ) { window.requestAnimationFrame( function() { $mouseDot.addClass( 'over-iframe' ); } ); } else { window.requestAnimationFrame( function() { $mouseDot.removeClass( 'over-iframe' ); } ); } if ( hoveringOverSwiper ) { window.requestAnimationFrame( function() { $mouseDot.addClass( 'over-swiper' ); } ); } else { window.requestAnimationFrame( function() { $mouseDot.removeClass( 'over-swiper' ); } ); } }; $( document ).on( 'mouseover', window.VAMTAM.debounce( onMouseOver, 100 ) ); }, // Common funcs used in custom animations. utils: { getAdminBarHeight: function () { return window.VAMTAM.adminBarHeight; }, watchScrollDirection: function () { var watcher = function () { this.lastScrollTop = 0; this.utils = this; return { init: function () { }, measure: function ( cpos ) { this.direction = cpos > this.lastScrollTop ? 'down' : 'up'; }.bind( this ), mutate: function ( cpos ) { this.utils.getScrollDirection = function () { return this.direction; }; this.lastScrollTop = cpos <= 0 ? 0 : cpos; // For Mobile or negative scrolling }.bind( this ), }; }.bind( this ); window.VAMTAM.addScrollHandler( watcher() ); }, isTouchDevice: function() { const prefixes = ' -webkit- -moz- -o- -ms- '.split( ' ' ); const mq = function( query ) { return window.matchMedia( query ).matches; }; if ( ( 'ontouchstart' in window ) || window.DocumentTouch && document instanceof DocumentTouch ) { // jshint ignore:line return true; } // include the 'heartz' as a way to have a non matching MQ to help terminate the join // https://git.io/vznFH var query = [ '(', prefixes.join( 'touch-enabled),(' ), 'heartz', ')' ].join( '' ); return mq( query ); }, } }, }; window.VAMTAM.CUSTOM_ANIMATIONS.init(); document.addEventListener('DOMContentLoaded', function () { window.VAMTAM.CUSTOM_ANIMATIONS.onDomReady(); }, true ); })( jQuery );