> For the complete documentation index, see [llms.txt](https://transition-slider.gitbook.io/jquery/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://transition-slider.gitbook.io/jquery/slide-options/slide-parameters.md).

# Slide parameters

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

```markup
<script>
    jQuery(document).ready(function($) {
        $("#slider-wrapper").transitionSlider({
            slides: [
                {
                    src: "assets/1.mp4",
                    transitionEffect: "roll",
                    brightness: "fade",
                    easing:"fast",
                    transitionDuration: 2000,
                    distance: "long",
                },
                {
                    src: "../assets/images/2.jpg"
                }
            ]
        );
    });
</script>
```

| Parameter   | Type     | Default | Description                                                                                                                              |
| ----------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
| `src`       | `string` |         | Path in the slide specifies the slider background image or video.                                                                        |
| `url`       | `string` |         | Put URL parameter if you want to make full slide link.                                                                                   |
| `urlTarget` | `string` |         | Open full slide link in new tab (value: `"blank"`) or in same tab (value: `"self"`).                                                     |
| `thumbSrc`  | `string` |         | When the Thumbnails option is enabled here you can put a URL parameter next to the assembly that will be displayed as a slide thumbnail. |
| `autoplay`  | `number` | `3000`  | If the main autoplay option is **ON** with this option you can set a different autoplay timer for each individual slide.                 |
