Hello,
I want to change masonry gallery transition time.
It’s too quickly, I want it be slowly.
how to change it ?
thanks.
hello,does someone can help this?
Hi Moaaaaya,
Can you please give us the link to the page with the issue?
Best regards,
Victoria
Hi Moaaaaya,
Please have a look at the solution posted here
https://kriesi.at/support/topic/enfold-easy-slider-caption-speed/
Best regards,
Victoria
hi It’s work now,
but when last slider transit to first, the speed is not change.
how to change it ?
Hi Moaaaaya,
It seems to be the same on my end, which browser are you using?
Best regards,
Victoria
Hi,
Thanks for the update.
You have to modify this code around line 832:
displaySlide.css(properties).avia_animate({opacity:1}, self.options.transitionSpeed/2, 'linear', function()
{
hideSlide.avia_animate({opacity:0}, 200, 'linear', fadeCallback);
});
Set the transition speed from 200 to the same speed set in the slider options.
displaySlide.css(properties).avia_animate({opacity:1}, self.options.transitionSpeed/2, 'linear', function()
{
hideSlide.avia_animate({opacity:0}, self.options.transitionSpeed/2, 'linear', fadeCallback);
});
Best regards,
Ismael
Great, it’s work.
but I have another question is the Slideshow autorotation duration.
i had set 5,
the second slide change to first ,the duration time is right.
but when first slide change to second. I think duration time is about 2 second.
Hi,
Thanks for the update.
Try to remove the “divided by 2” in the transition value.
hideSlide.avia_animate({opacity:0}, self.options.transitionSpeed/2, 'linear', fadeCallback);
.. change to:
hideSlide.avia_animate({opacity:0}, self.options.transitionSpeed, 'linear', fadeCallback);
Best regards,
Ismael