Changing Recommendation Scroll Speed
-
Greetings,
Thanks for this awesome plugin! Sorry to bother you with this.. but I’m a JQuery newb… my quotes are a bit long, and I’d like to slow down the scroll speed.
Assuming this is the right code to alter from recommendations.php file:
<script> (function($) { var h = 0; $('#<?php echo $divid; ?> .items blockquote').each(function() { h = Math.max(h, $(this).height()); }); $('#<?php echo $divid; ?>').height(h); $('#<?php echo $divid; ?>').scrollable({circular:true}).autoscroll({autoplay:true,autopause:true}); })(jQuery); </script>
If not a simple fix… if you have any resources you direct me to — I’ve done a bunch of searching… The closest I’ve come is a recommendation to use a
window.setTimeout(nextSection, 1000, $(this));
from this link:
https://stackoverflow.com/questions/8168714/jquery-scrollable-ignores-delayBut I’m not sure how to integrate it. Any advice would be greatly appreciated.
Best,
Amanda
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘Changing Recommendation Scroll Speed’ is closed to new replies.