Video

<script>
    jQuery(document).ready(function($) {
        $("#slider-wrapper").transitionSlider({
            // example of video buttons options
            buttons: {
                pauseVisible: true,
                muteVisible: true
            },
            resetVideos: false,
            videoAutoplay: true
        });
    });
</script>

Parameter

Type

Default

Description

buttons

object/boolean

true

Object with buttons parameters for video slide.

{

pauseVisible

boolean

true

Set to false to hide pause button on video slide.

muteVisible

boolean

true

Set to false to hide mute button on video slide.

}

resetVideos

boolean

false

Set to true if you want the video slide to start over.

videoAutoplay

boolean

true

Set the option to false unless you want the video slide to start playing automatically.

Last updated