UNPKG

@mdbootstrap/bootstrap-sidebar

Version:

Sidebar is an additional navigation component that provides extensive support and a clear way for navigating through complex websites with hundreds of links and subpages.

25 lines (22 loc) 465 B
class TouchUtil { _getCoordinates(e) { const [touch] = e.touches; return { x: touch.clientX, y: touch.clientY, }; } _getDirection(displacement) { return { x: { direction: displacement.x < 0 ? 'left' : 'right', value: Math.abs(displacement.x), }, y: { direction: displacement.y < 0 ? 'up' : 'down', value: Math.abs(displacement.y), }, }; } } export default TouchUtil;