vue-app-touch
Version:
26 lines (23 loc) • 790 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<div id="a" style="height:100px;background:#f1f1f1">
<div style="height:50px;border-bottom:1px solid #000"></div>
</div>
</body>
<script src="./bundle.js"></script>
<script>
document.querySelector('#a').addEventListener('tap', function (e) {
this.querySelector('div').innerHTML = 'tap:' + Date.now();
}, false);
document.querySelector('#a').addEventListener('press', function (e) {
this.querySelector('div').innerHTML = 'press:' + Date.now();
}, false);
</script>
</html>