metafizzy / flickity

:leaves: Touch, responsive, flickable carousels
https://flickity.metafizzy.co
7.52k stars 605 forks source link

Get mouse position while dragging #947

Closed SpabRice closed 5 years ago

SpabRice commented 5 years ago

Hello,

I'm looking for a possibility to get the mouse position while the carousel is dragging.

The usual jquery actions like 'mousemove','ondrag', ... are not working. It always stops when dragging the carousel. Is there any way to get them?

Example http://jsfiddle.net/hrzt698n/7/

desandro commented 5 years ago

Use Flickity's custom dragMove event that provides a moveVector parameter

$carousel.on( 'dragMove.flickity', function( event, pointer, moveVector ) {...});

See dragMove demo on CodePen