%PDF- %PDF-
Direktori : /var/www/html/higroup/wp-content/themes/evenex/assets/js/ |
Current File : /var/www/html/higroup/wp-content/themes/evenex/assets/js/xs-grid-line-animation.js |
jQuery(function($) { "use strict"; var selectAnimation = $( ".xs-grid-line-parallax-animation .elementor-top-section" ); if (selectAnimation.length > 0) { selectAnimation.each(function() { $(this).prepend( '<div class="xs-grid-parallax-anim-wraper">' + '<span class="xs-grid-line-parallax">' + '<span class="xs-grid-line-parallax-inner" data-translate="350">' + "</span>" + "</span>" + '<span class="xs-grid-line-parallax">' + '<span class="xs-grid-line-parallax-inner" data-translate="450">' + "</span>" + "</span>" + '<span class="xs-grid-line-parallax">' + '<span class="xs-grid-line-parallax-inner" data-translate="250">' + "</span>" + "</span>" + '<span class="xs-grid-line-parallax">' + '<span class="xs-grid-line-parallax-inner" data-translate="150">' + "</span>" + "</span>" + '<span class="xs-grid-line-parallax">' + '<span class="xs-grid-line-parallax-inner" data-translate="100">' + "</span>" + "</span>" + "</div>" ); }); } }); jQuery(document).ready(function($) { if ($(".xs-grid-line-parallax").length > 0) { $(".xs-grid-line-parallax").each(function() { let target = $(this).find(".xs-grid-line-parallax-inner"); let translateValue = target.data("translate") ? target.data("translate") : 300; $(target).magician({ type: "scroll", animation: { translateY: Number(translateValue) } }); }); } });