# Wheel Navigation

```markup
<script>
    jQuery(document).ready(function($) {
        $("#slider-wrapper").transitionSlider({
            // example of wheel navigation options
            wheelNavigation: {
                enable: false,
                stopOnLast: false,
                interval: 2000
            }
        });
    });
</script>
```

| **Parameter**     | Type      | Default     | Description                                                                                                          |
| ----------------- | --------- | ----------- | -------------------------------------------------------------------------------------------------------------------- |
| `wheelNavigation` | `object`  |             | Object with wheel navigation parameters.                                                                             |
| `{`               |           |             |                                                                                                                      |
| `enable`          | `boolean` | `false`     | Enable / disable mouse wheel navigation for slider.                                                                  |
| `stopOnLast`      | `boolean` | `false`     | Set to `true` if you want to be able to continue scrolling through the page after the slider reaches the last slide. |
| `interval`        | `number`  | `2000`      | Delay between wheel scroll events.                                                                                   |
| `}`               |           | <p><br></p> |                                                                                                                      |
