Skip to content

Instantly share code, notes, and snippets.

@defims
Last active August 29, 2015 13:56
Show Gist options
  • Save defims/9116800 to your computer and use it in GitHub Desktop.
Save defims/9116800 to your computer and use it in GitHub Desktop.
<!doctype html>
<head>
<style>
.download{
background: lightblue;
}
.download.hover{
background: lightgreen;
}
</style>
</head>
<body>
<button class="download"
ontouchstart="this.classList.add('hover');e.preventDefault();/^(?:INPUT|TEXTAREA|A)$/.test(e.target.tagName)||e.preventDefault();"
ontouchmove="this.classList.remove('hover')"
ontouchend="this.classList.remove('hover')"
>下载</button>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment