2.5.1 • Published 5 years ago

track-slide v2.5.1

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

Track Slide

Constructor to slide multiple objects on a track rather than individually.

To get started

CommonJS

$ npm install track-slide
var TrackSlide = require('track-slide');

Browser Global

<script src="https://code.jquery.com/jquery-3.0.0.min.js"></script>
<script src="TheC2Group/event-handler.js"></script>
<script src="cuth/dist/jquery.dragger.js"></script>
<script src="iife/track-slide.js"></script>

Example

<div class="TrackSlide">
    <ul>
        <li>...
        ...
    </ul>
</div>
// This wouldn't be necessary since all these options are the defaults
var options = {
    pageLock: false,
    trackSelector: 'ul',
    cellSelector: 'li',
    autoResize: 'true',
    animationDuration: 400,
    useTransform: false,
    allowEmptySpace: false
};

var slider = new TrackSlide('.TrackSlide', options);

// Change the slider to a specifig index
slider.slideTo(1);

// Remeasure the slider
slider.resize();

// Move to the previous slide
slider.previous();

// Move to the next slide
slider.next();

// Move to the previous page of slides
slider.previousPage();

// Move to the next page of slides
slider.nextPage();

Events

slideTo

slider.on('slideTo', function (index) {
    console.log('Slider moved to ' + index);
});

// slider.off('slideTo');

hasDragged

resize

slider.on('resize', function (measurements) {
    console.log(slider.len - measurements.fit); // amount not showing
});

Test

Start a local server in the base directory. Example

http-server

Navigate to localhost:8080/example/

Lint the JavaScript:

jshint track-slide.js

License

MIT © The C2 Group

2.5.1

5 years ago

2.5.0

5 years ago

2.4.3

6 years ago

2.4.2

6 years ago

2.4.1

8 years ago

2.4.0

8 years ago

2.3.0

8 years ago

2.2.1

9 years ago

2.2.0

9 years ago

2.1.0

9 years ago