Okay
  Public Ticket #162687
Nectar Slider caption transitions
Closed

Comments

  • Ant started the conversation
    Hi there, Fantastic theme folks! I was just wondering how I could change the timing of the captions as I'd like for them to appear on each slide a few seconds later than than the preset and maybe with a slightly slower transition. Is this possible? Many thanks :)
  •  1,069
    ThemeNectar replied

    Hey Ant!

    Open the nectar-slider.js file located in the js folder and search for this:

    //fadeIn active slide
    $($containerClass+' .swiper-slide:nth-child('+ (currentSlide + 1) +')').find('.content').children().each(function(i){
    				
    	$(this).stop().delay(i*90).animate({
    		'opacity' : 1,
    		'padding-top' : 0
    	},{ duration: 400, easing: 'easeOutQuad'});	
    });

    now just play with the values for duration and the "90" in i*90

    Cheers :)

  • Ant replied

    Many thanks :)