An open API service indexing awesome lists of open source software.

https://github.com/m1ga/ti.pagetransform


https://github.com/m1ga/ti.pagetransform

andorid titanium-mobile titanium-module

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

```xml





```

```js
var tX = 0;

function touchMove(e){
e.source.translationX = tX - e.x;
}
function touchEnd(e){
e.source.translationX = 0;
}

function touchStart(e){
tX = e.x;
}
$.index.open();
```