blinkbox / fastclick-hand.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

fastclick-hand.js

FastClick implementation for PointerEvents

Based on Google's FastButton implementation

Usage

<script>
    var button = document.querySelector(".button");
    new PointerEventsFastClick.FastClick(button, function(){
		// run some code
	});
</script>

Optional jQuery plugin, when jQuery is avalaible

<script>
    $('.button').FastClick(function() {
		// run some code
	});
</script>

About


Languages

Language:JavaScript 100.0%