## Tap
Zepto 默認未包含 touch.js,而且 Zepto 中 touch 模塊的 tap 實現并不完美,會出現點透的 bug。除了 Zepto 的 touch 模塊,還可以用 fastclick 來實現,但 [fastclick](https://github.com/ftlabs/fastclick) 代碼量較大。
FrozenJS 中 tap 使用精簡的代碼解決了 Zepto 中 touch 模塊的點透的 bug。
使用示例:
~~~
// 使用on/bind等 Zepto 的事件綁定方法來綁定。
$(".tap-element").on("tap",function(){
});
// 快捷使用方法,類似click
$(".tap-element").tap(function(){
});
~~~