toloframework
Version:
Javascript/HTML/CSS compiler for Firefox OS or nodewebkit apps using modules in the nodejs style.
24 lines (17 loc) • 481 B
Markdown
# event.<event-name>
```
{DIV
event.tap: onTap
}
```
The following event names are actually gesture names:
* __tap__: Touch and release quickly without moving.
* __press__: Touch without moving but don't release before 250ms.
* __pan__: Touch and move around before releasing.
* __swipe__: Fast pan.
* __swiperight__: Swipe to the right.
* __swipeleft__: Swipe to the left.
* __swipetop__: Swipe to the top.
* __swipebottom__: Swipe to the bottom.
----
[Back](xjs.view.md)