You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
992 B
HTML
39 lines
992 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<title>Pan up</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="icon" href="">
|
|
<link rel="stylesheet" type="text/css" href="reset.css">
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
|
<script src="https://hammerjs.github.io/dist/hammer.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
<div id="myElement"></div>
|
|
|
|
<script>
|
|
var myElement = document.getElementById('myElement');
|
|
|
|
// create a simple instance
|
|
// by default, it only adds horizontal recognizers
|
|
var mc = new Hammer(myElement);
|
|
|
|
// let the pan gesture support all directions.
|
|
// this will block the vertical scrolling on a touch-device while on the element
|
|
mc.get('pan').set({ direction: Hammer.DIRECTION_ALL });
|
|
|
|
// listen to events...
|
|
mc.on("panup", function(ev) {
|
|
// myElement.textContent = ev.type +" gesture detected.";
|
|
myElement.style.animation = "gradient 5s ease infinite";
|
|
});
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|