- Posts: 14116
- Thank you received: 1639
change speed?
-
ivan.milic
Support Staff - Moderator
Less
More
10 years 8 months ago #38306
by ivan.milic
Replied by ivan.milic on topic change speed?
Can you post that part of code
Please Log in to join the conversation.
-
mcasner
Inactive member - Member
Less
More
- Posts: 24
- Thank you received: 0
10 years 7 months ago - 10 years 7 months ago #39276
by mcasner
Replied by mcasner on topic change speed?
Ivan,
I'm having this problem too. I've tried your recommendation.
1. replace the value for duration parameter
2. clear site cache
3. force browser reload from server
However, this does NOT slow down/speed up the slide transition.
Any other ideas?
Here is my code snippet. duration is set to 10000
I'm having this problem too. I've tried your recommendation.
1. replace the value for duration parameter
2. clear site cache
3. force browser reload from server
However, this does NOT slow down/speed up the slide transition.
Any other ideas?
Here is my code snippet. duration is set to 10000
Code:
jQuery(function() {
// Fluid layout example 1, resizing the items
jQuery('#<?php echo $elementID; ?>').carouFredSel({
<?php if($responsive) { ?>responsive: true,<?php } ?>
width: '100%',
scroll: <?php echo $scrollAmount ?>,
<?php if($navigation) { ?>
prev: '#<?php echo $elementID; ?>_prev',
next: '#<?php echo $elementID; ?>_next',<?php } ?>
<?php if($pagination) { ?>pagination: "#<?php echo $elementID; ?>_pager",<?php } ?>
<?php if($timer) { ?>
auto: {
pauseOnHover: 'resume',
onPauseStart: function( percentage, duration ) {
jQuery(this).trigger( 'configuration', ['width', function( value ) {
jQuery('#<?php echo $elementID; ?>_timer').stop().animate({
width: value
}, {
duration: 10000,
easing: 'linear'
});
}]);
},
onPauseEnd: function( percentage, duration ) {
jQuery('#<?php echo $elementID; ?>_timer').stop().width( 0 );
},
onPausePause: function( percentage, duration ) {
jQuery('#<?php echo $elementID; ?>_timer').stop();
}
},<?php }else{ ?>
auto: <?php echo $autoSlideShow; ?>, <?php } ?>
items: {
visible: {
min: <?php echo $minVisible; ?>,
max: <?php echo $maxVisible; ?>
}
}
});
Last edit: 10 years 7 months ago by mcasner.
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
10 years 7 months ago #39286
by ivan.milic
Replied by ivan.milic on topic change speed?
instead of:
duration: duration,
you put:
duration: 10000,
right?
duration: duration,
you put:
duration: 10000,
right?
Please Log in to join the conversation.
-
mcasner
Inactive member - Member
Less
More
- Posts: 24
- Thank you received: 0
10 years 7 months ago #39337
by mcasner
Replied by mcasner on topic change speed?
Yes, I used...
duration: 10000,
It is included in the code snipped two posts above.
duration: 10000,
It is included in the code snipped two posts above.
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
10 years 7 months ago #39346
by ivan.milic
Replied by ivan.milic on topic change speed?
Send link
Please Log in to join the conversation.
-
mcasner
Inactive member - Member
Less
More
- Posts: 24
- Thank you received: 0
10 years 7 months ago #39350
by mcasner
Replied by mcasner on topic change speed?
Here is a link to my site:
www.ifapray.org/A1/
Please Log in to join the conversation.
Time to create page: 0.155 seconds