событие swipeверсия добавлена: 1.0
Описание: Срабатывает при горизонтальном свайпе длительностью 1 секунда и смещении по горизонтали 30px или более (при смещении по вертикали менее 30px).
jQuery( window ).on( "swipe", function( event ) { ... } )
Срабатывает при горизонтальном свайпе длительностью 1 секунда и смещении по горизонтали 30px или более (при смещении по вертикали менее 30px), но эти параметры могут быть настроены:
-
$.event.special.swipe.scrollSupressionThreshold(по умолчанию: 10px) – Более чем это горизонтальное смещение, и мы будем подавлять прокрутку. -
$.event.special.swipe.durationThreshold(по умолчанию: 1000мс) – Более времени, чем это, и это не свайп. -
$.event.special.swipe.horizontalDistanceThreshold(по умолчанию: 30px) – Смещение свайпа по горизонтали должно быть больше этого значения. -
$.event.special.swipe.verticalDistanceThreshold(по умолчанию: 30px) – Смещение свайпа по вертикали должно быть меньше этого значения.
Событие swipe также можно расширить, чтобы добавить собственную логику или функциональность. Следующие методы могут быть расширены:
-
$.event.special.swipe.startПо умолчанию:function( event ) { var data = event.originalEvent.touches ? event.originalEvent.touches[ 0 ] : event; return { time: ( new Date() ).getTime(), coords: [ data.pageX, data.pageY ], origin: $( event.target ) }; }Этот метод получает событие touchstart и возвращает объект данных о начальном расположении.
-
$.event.special.swipe.stopПо умолчанию:function( event ) { var data = event.originalEvent.touches ? event.originalEvent.touches[ 0 ] : event; return { time: ( new Date() ).getTime(), coords: [ data.pageX, data.pageY ] }; }Этот метод получает событие touchend и возвращает объект данных об окончательном расположении.
-
$.event.special.swipe.handleSwipeПо умолчанию:function( start, stop ) { if ( stop.time - start.time < $.event.special.swipe.durationThreshold && Math.abs( start.coords[ 0 ] - stop.coords[ 0 ] ) > $.event.special.swipe.horizontalDistanceThreshold && Math.abs( start.coords[ 1 ] - stop.coords[ 1 ] ) < $.event.special.swipe.verticalDistanceThreshold ) { start.origin.trigger( "swipe" ) .trigger( start.coords[0] > stop.coords[ 0 ] ? "swipeleft" : "swiperight" ); } }Этот метод получает объекты начала и остановки и обрабатывает логику и триггер для событий свайпа.
Пример:
Простой пример захвата и реагирования на событие swipe
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>swipe demo</title>
<link rel="stylesheet" href="//code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="//code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<style>
html, body { padding: 0; margin: 0; }
html, .ui-mobile, .ui-mobile body {
height: 105px;
}
.ui-mobile, .ui-mobile .ui-page {
min-height: 105px;
}
#nav {
font-size: 200%;
width:17.1875em;
margin:17px auto 0 auto;
}
#nav a {
color: #777;
border: 2px solid #777;
background-color: #ccc;
padding: 0.2em 0.6em;
text-decoration: none;
float: left;
margin-right: 0.3em;
}
#nav a:hover {
color: #999;
border-color: #999;
background: #eee;
}
#nav a.selected,
#nav a.selected:hover {
color: #0a0;
border-color: #0a0;
background: #afa;
}
div.box {
width: 30em;
height: 3em;
background-color: #108040;
}
div.box.swipe {
background-color: #7ACEF4;
}
</style>
</head>
<body>
<h3>Swipe the green rectangle to change its color:</h3>
<div class="box"></div>
<script>
$(function(){
// Bind the swipeHandler callback function to the swipe event on div.box
$( "div.box" ).on( "swipe", swipeHandler );
// Callback function references the event target and adds the 'swipe' class to it
function swipeHandler( event ){
$( event.target ).addClass( "swipe" );
}
});
</script>
</body>
</html>