Please add "fadeout" to effects plugin, this is already available on cycle effects version 2.99

http://jquery.malsup.com/cycle/fadeout.html

This avoids white flashes in between transitions which happens in the "fade" effect.

Comments

danielhonrade’s picture

if you can't wait when this will happen, just look for this file views_slideshow/contrib/views_slideshow_cycle/views_slideshow_cycle.views_slideshow.inc and edit:

ver 7.x-3.x

<?php
...
  $effects = array(
    'none' => 'none',
    'blindX' => 'blindX',
    'blindY' => 'blindY',
    'blindZ' => 'blindZ',
    'cover' => 'cover',
    'curtainX' => 'curtainX',
    'curtainY' => 'curtainY',
    'fade' => 'fade',
    'fadeout' => 'fadeout',  //<- simply add this line
...
?>
dfletcher’s picture

There's a better way to do this in an older installation than danielhonrade's suggestion in #1.

First you need to install json2.js as the configuration UI suggests. This opens up a section called "jQuery Cycle Custom Options".

Once you have these advanced controls put a value for "fx" of fadeout and a value for "speedOut" to the desired transition speed, e.g. 500. This method will not use the speed setting from the advanced transition options above it.

Assuming fadeout is available in your installed version of jquery cycle this works great and doesn't require hacking third party modules.

Edit: whoops, and of course set the main transition setting to "None".

nickdickinsonwilde’s picture

Issue summary: View changes

@danielhonrade: converted into a patch and applied, thanks.

nickdickinsonwilde’s picture

Status: Active » Fixed

  • NickWilde committed 0401013 on 7.x-3.x
    Issue #1902676 by danielhonrade, NickWilde: Missing Effect 'fadeout' in...

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.