Tagged: parallax
Hi support !
Happy new year to all the team !
I’m using the parallax effect on Enfold, but I find it a little bit lazy and slow
Is it possible to make the parallax slide effect more faster like the site in the private content ?
Is it possible to set it by a clean way like a function ?
I know that there’s a speed factor :
0.0 means the image will appear fixed in place, and 1.0 the image will flow at the same speed as the page content.
I will need to decrease the float amount to make the transition faster
There this kind of factor in enfold\config-templatebuilder\avia-shortcodes\section.php line 557
$speed = apply_filters(‘avf_parallax_speed’, “0.3”, $params[‘id’]);
Is it possible to overide this parameter with a function if it’s the correct parameter for parallax speed ?
Many thanks
Kind regards
Hey Ikyo,
You can add this code in functions.php:
add_filter('avf_parallax_speed','avia_change_parallax_ratio', 10, 2);
function avia_change_parallax_ratio($ratio, $id){
$ratio = "0.3";
return $ratio;
}
Just change 0.3 to adjust the speed. Hope this helps.
Best regards,
Nikko
Great great great !
What a support !
Many thanks Nikko