├── .gitignore ├── .project ├── .settings └── com.appcelerator.titanium.core.prefs ├── CHANGELOG.txt ├── LICENSE ├── LICENSE.txt ├── README ├── Resources ├── TKKeyframeAnimation.js ├── android │ ├── appicon.png │ ├── default.png │ └── images │ │ ├── res-long-land-hdpi │ │ └── default.png │ │ ├── res-long-land-ldpi │ │ └── default.png │ │ ├── res-long-port-hdpi │ │ └── default.png │ │ ├── res-long-port-ldpi │ │ └── default.png │ │ ├── res-notlong-land-hdpi │ │ └── default.png │ │ ├── res-notlong-land-ldpi │ │ └── default.png │ │ ├── res-notlong-land-mdpi │ │ └── default.png │ │ ├── res-notlong-port-hdpi │ │ └── default.png │ │ ├── res-notlong-port-ldpi │ │ └── default.png │ │ └── res-notlong-port-mdpi │ │ └── default.png ├── app.js ├── buttons.js ├── buttons_with_scale.js ├── hello_world.js ├── hello_world_with_fade.js ├── info_view.js ├── iphone │ ├── Default-Landscape.png │ ├── Default-Portrait.png │ ├── Default.png │ ├── Default@2x.png │ └── appicon.png ├── redbox.js ├── redbox_multi_views.js └── redbox_multi_views_scale.js ├── manifest └── tiapp.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/.project -------------------------------------------------------------------------------- /.settings/com.appcelerator.titanium.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/.settings/com.appcelerator.titanium.core.prefs -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/README -------------------------------------------------------------------------------- /Resources/TKKeyframeAnimation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/Resources/TKKeyframeAnimation.js -------------------------------------------------------------------------------- /Resources/android/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/Resources/android/appicon.png -------------------------------------------------------------------------------- /Resources/android/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/Resources/android/default.png -------------------------------------------------------------------------------- /Resources/android/images/res-long-land-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/Resources/android/images/res-long-land-hdpi/default.png -------------------------------------------------------------------------------- /Resources/android/images/res-long-land-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/Resources/android/images/res-long-land-ldpi/default.png -------------------------------------------------------------------------------- /Resources/android/images/res-long-port-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/Resources/android/images/res-long-port-hdpi/default.png -------------------------------------------------------------------------------- /Resources/android/images/res-long-port-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/Resources/android/images/res-long-port-ldpi/default.png -------------------------------------------------------------------------------- /Resources/android/images/res-notlong-land-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/Resources/android/images/res-notlong-land-hdpi/default.png -------------------------------------------------------------------------------- /Resources/android/images/res-notlong-land-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/Resources/android/images/res-notlong-land-ldpi/default.png -------------------------------------------------------------------------------- /Resources/android/images/res-notlong-land-mdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/Resources/android/images/res-notlong-land-mdpi/default.png -------------------------------------------------------------------------------- /Resources/android/images/res-notlong-port-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/Resources/android/images/res-notlong-port-hdpi/default.png -------------------------------------------------------------------------------- /Resources/android/images/res-notlong-port-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/Resources/android/images/res-notlong-port-ldpi/default.png -------------------------------------------------------------------------------- /Resources/android/images/res-notlong-port-mdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/Resources/android/images/res-notlong-port-mdpi/default.png -------------------------------------------------------------------------------- /Resources/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/Resources/app.js -------------------------------------------------------------------------------- /Resources/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/Resources/buttons.js -------------------------------------------------------------------------------- /Resources/buttons_with_scale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/Resources/buttons_with_scale.js -------------------------------------------------------------------------------- /Resources/hello_world.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/Resources/hello_world.js -------------------------------------------------------------------------------- /Resources/hello_world_with_fade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/Resources/hello_world_with_fade.js -------------------------------------------------------------------------------- /Resources/info_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/Resources/info_view.js -------------------------------------------------------------------------------- /Resources/iphone/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/Resources/iphone/Default-Landscape.png -------------------------------------------------------------------------------- /Resources/iphone/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/Resources/iphone/Default-Portrait.png -------------------------------------------------------------------------------- /Resources/iphone/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/Resources/iphone/Default.png -------------------------------------------------------------------------------- /Resources/iphone/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/Resources/iphone/Default@2x.png -------------------------------------------------------------------------------- /Resources/iphone/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/Resources/iphone/appicon.png -------------------------------------------------------------------------------- /Resources/redbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/Resources/redbox.js -------------------------------------------------------------------------------- /Resources/redbox_multi_views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/Resources/redbox_multi_views.js -------------------------------------------------------------------------------- /Resources/redbox_multi_views_scale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/Resources/redbox_multi_views_scale.js -------------------------------------------------------------------------------- /manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/manifest -------------------------------------------------------------------------------- /tiapp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toru0325/TKAnimationSample/HEAD/tiapp.xml --------------------------------------------------------------------------------