README
đ¨đŧâđ§ Slidemanager
Simple slide manager đĢ Focused on animations.
Installation
npm add slidemanager
Usage
import Slidemanager from 'slidemanager'
const slider = new Slidemanager({
el: document.querySelector('#gallery'),
callback({ current, previous, direction, done }) {
// Your animations here
// ...
// Call done() when your animation is complete
done()
}
})
Parameters
Options
- đŧ
el
: DOM element to attach the swipe event. If not given, please provide alength
parameter - âšī¸
callback
: function called when user swipes or slide changes automatically. The scope is the slider's scope - đÂ
loop
: whether to stop at the last/first slide or not. (Defaultfalse
) - âļī¸Â
auto
: set it totrue
to automatically switch to the next slide. (Defaultfalse
) - â¯
interval
: specifies the interval in seconds between each slide change.auto
must betrue
. (Default5
) - âī¸Â
vertical
: if set totrue
, the swipe movement to change the current slide will need to be vertical. (Defaultfalse
) - đĸ
length
: number of slides. If not given, The number of slides will be the number ofel
's children - *ī¸âŖÂ
swipe
: iffalse
, the swipe movement detection is disabled. (Defaulttrue
) - đ
mouseSwipe
: Whether the swipe movement must be checked on the mouse or not. (Defaultfalse
) - đÂ
random
: Switch to random slides instead of next and previous ones. Enables automatically theloop
option. (Defaultfalse
)
ī¸âŖÂstartAt
: The index from which to start the slider on initialization. (Default0
)- â
threshold
: Amount of pixels required to change slide when swiping (Default60
) - âē
init
: Whether to init the manager immediately or not. Iffalse
, call the.init()
method to initialize the manager. (Defaulttrue
)
Methods
- đ
init
: adds event listeners. Call this when theinit
option is set tofalse
- â°ī¸
destroy
: removes event listeners and stops the slider - đ
getIndex
: gets the current index - đ
prev
: goes to the previous slide - đ
next
: goes to the next slide - đ
goTo(index, data)
: goes to the specified index, you can pass data which can be recovered in the callback - đĻ
start
/stop
: starts/stops the automatic sliding - đ
done
: call this function when your animations are over
Callback
The callback
function receives a parameter containing the following properties :
current
: New indexprevious
: Previous indexdirection
: 1 for next, -1 for previousdone
: the function to call when you're done with your animationsdata
: some data that may be given from a call togoTo()
To do
- Add
resume
andpause
methods
License
MIT, see LICENSE.md for details.