General

You can use/change following options in the slider setup method. For example:

<script>
    jQuery(document).ready(function($) {
        $("#slider-wrapper").transitionSlider({
            // example of General slider options
            initialSlide: 0,
            shadow: 'off',
            grabCursor: true,
            stopOnLastSlide: false,
            overlay: 'rgba(201, 76, 76, 0.3)',
            parallax: 0.7,
            invertColorSelectors: '.header-menu',
            transitionEffect: "zoom",
            transitionDuration: 2000
        });
    });
</script>

Last updated