Glide animation duration is not working. Whatever i enter it is always the same duration... Any hints?

Comments

sudeepg’s picture

Yes. This is bug. I'll correct this in the next release. As of now, you can play with following parameters to change this rate at line number 215, 216 in Drupal 5 module:

$output_body .= 'enablefade: [true, 0.2], //[true/false, fadedegree]'."\n";
$output_body .= 'autorotate: [true, 3000], //[true/false, pausetime]'."\n";

Hope this helps.

Thanks,
Sudeep

sudeepg’s picture

Assigned: Unassigned » sudeepg

I'll be resolving this in the next release. Assigning to myself.

Thanks,
Sudeep

physiotek’s picture

thanks a lot! it works!
pht3k

Micha1111’s picture

There is the same problem in Version 6.x-1.1

sudeepg’s picture

Yes.. agreed. Will be resolved in the next release.

Thanks,
Sudeep

vmenelas’s picture

How do I change this in Drupal 6? for the glide animation.

vmenelas’s picture

How do I change this in Drupal 6? for the glide animation.

sudeepg’s picture

Play with following 2 lines in the module in Drupal 6:

Line number 210: $output_body .= 'enablefade: [true, 0.2], //[true/false, fadedegree]'."\n";
Line number 211: $output_body .= 'autorotate: [true, 3000], //[true/false, pausetime]'."\n";

Meaning try changing 0.2 to 0.8 or making it 0.1.... and same with autorotate option: change it from 3000 to 1000, for example...

davemybes’s picture

StatusFileSize
new11.95 KB
new17.64 KB

I had a similar issue, but also wanted to edit other settings for the slider. So I created admin page settings for all of them. There are several other fixes I did, like having a list of nodes available in a drop-down, rather than typing in a textfield. The attached patch has these options for the 5.x-1.3 version of the module. There are also a few code cleanups in there. I am attaching the patched module as well, just in case someone wants that (remove the .txt extension to get the actual module file).

3djeff’s picture

Does this patch only work in version 5.x? I'm using 6.x and would like to know pryor to trying it out.

vako’s picture

Doesn't work for 6

sudeepg’s picture

Status: Active » Closed (fixed)

Fixed in the latest release.

-- Sudeep