Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #27071

    Hi,

    How can I make fade and slide speed slower in Easy slider?

    Thanks,

    Vedran

    #132629

    Hi,

    Open js > shortcodes.js, find this codes:

    $.AviaSlider.defaults  = {

    //interval between autorotation switches
    interval:5,

    //autorotation active or not
    autoplay:false,

    //fade or slide animation
    animation:'slide',

    //transition speed when switching slide
    transitionSpeed:900,

    //easing method for the transition
    easing:'easeInOutQuart',

    Adjust the transition speed and play around with easing methods.

    Regards,

    Ismael

    #132630

    Hi,

    Works well from first to second slide, but from second to third and so on it doesn’t work.. so changing “transitionSpeed” only influence speed from first to second image, but I have six images, so rest of transitions are still too fast. Nothing changed for them. Why?

    Thanks,

    Vedran

    #132631

    Tbh this would really surprise me if the transition speed varies from slide to slide because the executed code is always the same. However if the transition speed is still too fast try to increase the value or replace following code in enfold/js/shortcodes.js

    displaySlide.css({visibility:'visible', zIndex:2, opacity:0}).avia_animate({opacity:1}, this.options.transitionSpeed/3, 'linear');

    hideSlide.avia_animate({opacity:0}, this.options.transitionSpeed/2, 'linear', function()

    with

    displaySlide.css({visibility:'visible', zIndex:2, opacity:0}).avia_animate({opacity:1}, this.options.transitionSpeed, 'linear');

    hideSlide.avia_animate({opacity:0}, this.options.transitionSpeed, 'linear', function()

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Slider fade speed’ is closed to new replies.