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
- Host: GitHub
- URL: https://github.com/m1ga/ti.pagetransform
- Owner: m1ga
- License: other
- Created: 2021-11-27T15:05:46.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-27T15:36:47.000Z (over 3 years ago)
- Last Synced: 2025-01-27T07:11:56.847Z (4 months ago)
- Topics: andorid, titanium-mobile, titanium-module
- Language: Java
- Homepage:
- Size: 1.45 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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();
```