I have a Nivo Slider on my page and I'd like to disable the slider-transition / effect, but there is no option to set the effect-option to 'no', false or something like that. The following options are allowed:
There is no option, but a simple workaround:
Simple choose 'fade' as 'effect' and set 'animSpeed' to 1
Example:
$(window).load(function() {
$('#slider').nivoSlider({
effect: 'fade',
animSpeed: 1
});
});