36 lines
712 B
HTML
36 lines
712 B
HTML
<html >
|
|
<style type="text/css" media="screen">
|
|
body {
|
|
background-color: beige;
|
|
height: 100vh;
|
|
}
|
|
.inner {
|
|
width: 300px;
|
|
margin: 0 auto;
|
|
}
|
|
#touchsurface {
|
|
width: 300px;
|
|
height: 300px;
|
|
background-color: grey;
|
|
}
|
|
</style>
|
|
|
|
<script src="gamuSwipe.js" type="text/javascript"></script>
|
|
<script type="text/javascript">
|
|
function handleswipe(direction){
|
|
if (direction){
|
|
alert('direction = '+ direction);
|
|
}
|
|
}
|
|
gamuSwipe('my_body', handleswipe);
|
|
</script>
|
|
|
|
<body id="my_body">
|
|
<div class="inner">
|
|
<div id="touchsurface">Swipe Me</div>
|
|
<a class="toto" href="https://developer.mozilla.org/en-US/docs/Web/API/Touch_events"> Click Ok </a>
|
|
</div>
|
|
</body>
|
|
|
|
|
|
</html>
|