This library doesn't seem to include cursor handling for "grab" and "grabbing" which is core to the UX. It's in the examples so I assumed it would be in there. For others, here's what you should add to your carousel...
.grabbable {
cursor: grab;
cursor: -moz-grab;
cursor: -webkit-grab;
}
.grabbable:active {
cursor: grabbing;
cursor: -moz-grabbing;
cursor: -webkit-grabbing;
}
This library doesn't seem to include cursor handling for "grab" and "grabbing" which is core to the UX. It's in the examples so I assumed it would be in there. For others, here's what you should add to your carousel...