Using content slider with auto rotate, need pause button
I'm using
jCarousel Lite to power a content slider on a site. It has been working great, but I now have the need for a pause button to pause the auto rotation of the slides. I'd like to attach the pause function to an anchor tag. This feature is not built into the plugin currently and my attempts to contact the author have failed.
Here is the code on in my html...
-
<script type="text/javascript" src="javascript/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="javascript/jcarousellite.js"></script>
<script type="text/javascript" src="javascript/jeasing.js"></script>
<script type="text/javascript">
$(function() {
$(".rotatingNews").jCarouselLite({
btnNext: ".externalControl .next",
btnPrev: ".externalControl .prev",
visible: 1,
auto: 8000,
speed: 800,
easing: "easeout"
});
});
</script>
.rotatingNews is the class name of a div containing an unordered list. The list items are what hold the slide contents. If you need any more information, please let me know. Thanks!