Guido Lemmens 2
Guido Lemmens 2

Reputation: 2307

Where can i set the duration for CarouFredSel javascript in wordpress?

Does anyone knows where you can set the duration for CarouFredSel javascript in wordpress?

Source: http://docs.dev7studios.com/jquery-plugins/caroufredsel

Upvotes: 0

Views: 373

Answers (1)

oneeyedpauly
oneeyedpauly

Reputation: 71

Duration is listed in the documentation under "Hook up the carousel", is that what you meant?

<script type="text/javascript">
$(document).ready(function() {
// Using default configuration
$('#carousel').carouFredSel();
// Using custom configuration
$('#carousel').carouFredSel({
    items                : 2,
    direction            : "up",
    scroll : {
        items            : 1,
        easing            : "elastic",
        duration        : 1000,
        pauseOnHover    : true
    }
});
});
</script>

Upvotes: 1

Related Questions