Nivo Slider and Transitions

Posted: 3 months ago Quote #138
Hello,

I am trying to set the Nivo Slider to use only the "fade" transition and cannot find any information on how to do that. Does anyone know how to set the transisition or have a link with instructions?

Thanks,
Rhek
Posted: 3 months ago Quote #140
Hello,

I got this working. I found in the 2.4 version this code in Index.cshtml in the Views Folder of the theme...

<script type="text/javascript">
    jQuery(window).load(function () {
        jQuery('#slider').nivoSlider();
    });
</script>
}

I replaced it with the code from my 2.1 version which was...

<script type="text/javascript">
  jQuery(window).load(function () {
    jQuery('#slider').nivoSlider({
      effect: 'sliceDown', //Specify sets like: 'fold,fade,sliceDown'
      slices: 17,
      animSpeed: 600, //Slide transition speed
      pauseTime: 5000,
      startSlide: 0 //Set starting Slide (0 index)
    });
  });
</script>

I am not sure if this is the same thing I did for 2.1 version. Since there was not any parameters for the current nivoSlider I was looking for a different location to find them.

Thanks,
Rhek
Posted: 3 months ago Quote #145
Hello,
Yes.

effect: 'sliceDown', //Specify sets like: 'fold,fade,sliceDown'

You can set your preferred parameter effect