I have a slider on my frontpage that uses jquery and it has a transition that I really like that nextgen doesn't seem to have for slideshows. How can I add a new transition to nextgen? Would it be through a jquery javascript file? If I add it there would I need to add code to the options so the code pops up? This is the code I have from the other slider:
transitions_array[0] = 'animate_cool';
function transition_animate_cool(new_src, old_src) {
var delay_counter = 0;
cubes.each(function(){
$(this).find('.inner_b').css('background-image', 'url('+new_src+')');
$(this).find('.inner_a').delay(delay_counter).animate({opacity:0},300);
delay_counter = delay_counter +100;
//$(this).animate({opacity:0},2000);
// $()
});
I am not a javascript developer so I'm not sure if this will even work. Help would be really great!