Hi there. I want to change the timing when the pop-up image effect is done. I need it to be executed a bit faster because on larger screens if the image is in the lower part of thge screen the image stays blank and only when it reaches to the middle of the screen it appears. How can I do that. Thanks.
Hi svetkol!
Image is animated when it is completely visible that is why it may cause issues on low parts of the site. Can you please post the link to your page where we can see an example?
Cheers!
Yigit
Hey!
If you want the animation to start immediately or when the elements emerge at the bottom of the viewport, you can edit js > shortcodes.js, find this code on line 79:
$('.avia_animate_when_almost_visible', container).avia_waypoints({ offset: '80'});
Replace it with:
$('.avia_animate_when_almost_visible', container).avia_waypoints({ offset: '100%'});
Cheers!
Ismael
Thanks