📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-26 11:58:42
📂
/
/
home
/
pallabnv
/
public_html
/
wp-content__3bb9dea
/
themes
/
berich
/
elements
/
widgets
/
js
✏️
Editing: parallax.js
( function( $ ) { "use strict"; var pxl_widget_parallax_handler = function( $scope, $ ) { setTimeout(function(){ var w_width = $(this).width() / 2; var w_height = $(this).height() / 2; $('body:not(.elementor-editor-active) .elementor > .elementor-element').each(function(){ $(this).bind('mousemove',function(e){ if(e.pageX >= w_width){ $(this).find('.move-parallax').each(function(){ var speed = $(this).attr('data-speed'); var move_x = $(this).attr('data-move'); speed = (speed != undefined && speed != '') ? speed : 5 ; move_x = (move_x != undefined && move_x != '') ? move_x : 40 ; var move_y = (w_height >= e.pageY) ? -5 : +5 ; LaxMoving($(this), -move_x, move_y, speed); }); } else { $(this).find('.move-parallax').each(function(){ var speed = $(this).attr('data-speed'); var move_x = $(this).attr('data-move'); speed = (speed != undefined && speed != '') ? speed : 5 ; move_x = (move_x != undefined && move_x != '') ? move_x : 40 ; var move_y = (w_height <= e.pageY) ? -5 : +5 ; LaxMoving($(this), move_x, move_y, speed); }); } }); function LaxMoving(selector, move_x, move_y, speed){ selector.css({ 'transform': 'translate('+move_x+'px,'+move_y+'px)', '-webkit-transform': 'translate('+move_x+'px,'+move_y+'px)', '-o-transform': 'translate('+move_x+'px,'+move_y+'px)', '-moz-transform': 'translate('+move_x+'px,'+move_y+'px)', '-webkit-transition' : 'all ' + speed + 's ease-out', '-moz-transition' : 'all ' + speed + 's ease-out', '-o-transition' : 'all ' + speed + 's ease-out', 'transition' : 'all ' + speed + 's ease-out', 'animation-name' : 'inherit', '-webkit-animation-name' : 'inherit', '-ms-animation-name' : 'inherit', '-o-animation-name' : 'inherit', }); } }); }, 200); }; $( window ).on( 'elementor/frontend/init', function() { elementorFrontend.hooks.addAction( 'frontend/element_ready/particle.default', pxl_widget_parallax_handler ); } ); } )( jQuery );
💾 Save Changes
❌ Cancel