<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1">
<script src="https://files.cnblogs.com/files/yutaoyao/hammer.js"></script>
</head>
<body>
<div id="hitarea" style="width:300px;height:300px;background-color:red;"></div>
<script> 
var container= document.getElementById("hitarea");

hammertime = Hammer(container, {
preventDefault: true,
gesture: true
})
hammertime.on("swipeleft", function(){
alert("swipeleft");
});
hammertime.on("swiperight", function(){
alert("swiperight");
});

/*
touch
release
gesture
hold
tap
doubletap
dragstart
drag
dragend
dragleft
dragright
dragup
dragdown
swipe
swipeleft
swiperight
swipeup
swipedown
transformstart
transform
transformend
rotate
pinch
pinchin
pinchout 
*/
</script>
</body>
</html>

 

 

相关文章:

  • 2022-12-23
  • 2021-10-04
  • 2021-10-30
  • 2021-09-12
  • 2021-06-30
  • 2021-08-05
  • 2022-12-23
猜你喜欢
  • 2021-06-17
  • 2021-05-25
  • 2022-12-23
  • 2022-12-23
  • 2022-01-16
  • 2022-01-17
相关资源
相似解决方案