jquery-touchswipe

WebJar for jquery-touchswipe

Лицензия

Лицензия

MIT
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

jquery-touchswipe
Последняя версия

Последняя версия

1.6.19
Дата

Дата

Тип

Тип

jar
Описание

Описание

jquery-touchswipe
WebJar for jquery-touchswipe
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/mattbryson/TouchSwipe-Jquery-Plugin

Скачать jquery-touchswipe

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/jquery-touchswipe/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>jquery-touchswipe</artifactId>
    <version>1.6.19</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/jquery-touchswipe/
implementation 'org.webjars.npm:jquery-touchswipe:1.6.19'
// https://jarcasting.com/artifacts/org.webjars.npm/jquery-touchswipe/
implementation ("org.webjars.npm:jquery-touchswipe:1.6.19")
'org.webjars.npm:jquery-touchswipe:jar:1.6.19'
<dependency org="org.webjars.npm" name="jquery-touchswipe" rev="1.6.19">
  <artifact name="jquery-touchswipe" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='jquery-touchswipe', version='1.6.19')
)
libraryDependencies += "org.webjars.npm" % "jquery-touchswipe" % "1.6.19"
[org.webjars.npm/jquery-touchswipe "1.6.19"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

TouchSwipe 1.6

A jQuery plugin to be used on touch devices such as iPad, iPhone, Android etc.

Detects single and multiple finger swipes, pinches and falls back to mouse 'drags' on the desktop.

Time and distance thresholds can be set to distinguish between swipe gesture and slow drag.

Allows exclusion of child elements (interactive elements) as well allowing page scrolling or page zooming depending on configuration.

  • Detects swipes in 4 directions, "up", "down", "left" and "right"
  • Detects pinches "in" and "out"
  • Supports single finger or double finger touch events
  • Supports click events both on the touchSwipe object and its child objects
  • Definable threshold / maxTimeThreshold to determin when a gesture is actually a swipe
  • Events triggered for swipe "start","move","end" and "cancel"
  • End event can be triggered either on touch release, or as soon as threshold is met
  • Allows swiping and page scrolling
  • Disables user input elements (Button, form, text etc) from triggering swipes

Demos, examples and docs

http://labs.rampinteractive.co.uk/touchSwipe
http://labs.rampinteractive.co.uk/touchSwipe/docs

Installation

NPM

npm install jquery-touchswipe --save

Bower

bower install jquery-touchswipe --save

Manual

Include the minified file in your project.

<script type="text/javascript" src="js/jquery.touchSwipe.min.js"></script>

Usage

$(function() {
  $("#test").swipe( {
    //Generic swipe handler for all directions
    swipe:function(event, direction, distance, duration, fingerCount, fingerData) {
      $(this).text("You swiped " + direction );  
    }
  });

  //Set some options later
  $("#test").swipe( {fingers:2} );
});

For full demos, code examples and documentation, see below.

Development

Install dependencies

npm install

To minify

npm run minify

To build docs

npm run docs

To do both

npm run build

For port to XUI see:

https://github.com/cowgp/xui-touchSwipe

Версии библиотеки

Версия
1.6.19
1.6.18
1.6.15