You can edit the jquery.nivo.slider.js file, if you open this file in notepad and go to line 348, you will see the following code: -
// Generate random effect if(settings.effect === 'random'){ anims = new Array('sliceDownRight','sliceDownLeft','sliceUpRight','sliceUpLeft','sliceUpDown','sliceUpDownLeft','fold','fade', 'boxRandom','boxRain','boxRainReverse','boxRainGrow','boxRainGrowReverse'); currentEffect = anims[Math.floor(Math.random()*(anims.length + 1))]; if(currentEffect === undefined) { currentEffect = 'fade'; } }
In the code, change the following line (be sure to delete all other effects specified in this line)
anims = new Array (' slideInRight ');
as well as the last line
if (currentEffect === undefined) {currentEffect = ' slideInRight '}
You should now have one transition effect.
source share