Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #1097622

    Hello,
    I want to change masonry gallery transition time.
    It’s too quickly, I want it be slowly.
    how to change it ?
    thanks.

    #1097996

    hello,does someone can help this?

    #1098380

    Hi Moaaaaya,

    Can you please give us the link to the page with the issue?

    Best regards,
    Victoria

    #1098402
    This reply has been marked as private.
    #1099202

    Hi Moaaaaya,

    Please have a look at the solution posted here
    https://kriesi.at/support/topic/enfold-easy-slider-caption-speed/

    Best regards,
    Victoria

    #1099233

    hi It’s work now,
    but when last slider transit to first, the speed is not change.
    how to change it ?

    #1100232

    Hi Moaaaaya,

    It seems to be the same on my end, which browser are you using?

    Best regards,
    Victoria

    #1100335
    This reply has been marked as private.
    #1101291

    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

    #1101319

    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.

    • This reply was modified 5 years, 6 months ago by Moaaaaya.
    #1101763

    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

Viewing 11 posts - 1 through 11 (of 11 total)
  • You must be logged in to reply to this topic.