📓
Transition Slider jQuery
  • Welcome
  • Getting started
    • Slider Project Setup
  • Slider Options
    • General
    • Size
    • Autoplay
    • Video
    • Navigation
    • Wheel Navigation
    • Pagination
    • Thumbnails
    • Hash Navigation
    • Loading
    • Lightbox
  • Slide Options
    • Slide parameters
    • Transitions
  • Layer Options
    • Layer parameters
    • Element parameters
  • Special notes
    • Running things locally
Powered by GitBook
On this page

Was this helpful?

  1. Slider Options

Wheel Navigation

<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.

}

PreviousNavigationNextPagination

Last updated 3 years ago

Was this helpful?