Glide animation duration is not working. Whatever i enter it is always the same duration... Any hints?
| Comment | File | Size | Author |
|---|---|---|---|
| #9 | content_slider-5.x.patch | 17.64 KB | davemybes |
| #9 | content_slider.module.txt | 11.95 KB | davemybes |
Glide animation duration is not working. Whatever i enter it is always the same duration... Any hints?
| Comment | File | Size | Author |
|---|---|---|---|
| #9 | content_slider-5.x.patch | 17.64 KB | davemybes |
| #9 | content_slider.module.txt | 11.95 KB | davemybes |
Comments
Comment #1
sudeepg commentedYes. 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
Comment #2
sudeepg commentedI'll be resolving this in the next release. Assigning to myself.
Thanks,
Sudeep
Comment #3
physiotek commentedthanks a lot! it works!
pht3k
Comment #4
Micha1111 commentedThere is the same problem in Version 6.x-1.1
Comment #5
sudeepg commentedYes.. agreed. Will be resolved in the next release.
Thanks,
Sudeep
Comment #6
vmenelas commentedHow do I change this in Drupal 6? for the glide animation.
Comment #7
vmenelas commentedHow do I change this in Drupal 6? for the glide animation.
Comment #8
sudeepg commentedPlay 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...
Comment #9
davemybes commentedI 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).
Comment #10
3djeff commentedDoes this patch only work in version 5.x? I'm using 6.x and would like to know pryor to trying it out.
Comment #11
vako commentedDoesn't work for 6
Comment #12
sudeepg commentedFixed in the latest release.
-- Sudeep