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

https://github.com/hansemannn/ti.splashview

💦 Support for the splash-screen library CBZSplashView in Appcelerator Titanium.
https://github.com/hansemannn/ti.splashview

ios native splashview titanium

Last synced: 10 months ago
JSON representation

💦 Support for the splash-screen library CBZSplashView in Appcelerator Titanium.

Awesome Lists containing this project

README

          

# Ti.SplashView

[![Contact](http://hans-knoechel.de/shields/shield-twitter.svg)](http://twitter.com/hansemannnn)

Support for the Twitter-like splash-screen library [`CBZSplashView`](https://github.com/callumboddy/CBZSplashView) in Titanium. Thanks to @callumboddy for that awesome library!

Twitter Example

### Example
```js
var Splash = require('ti.splashview');

var win = Ti.UI.createWindow({
backgroundColor: 'yellow'
});

var splashView = Splash.createSplashView({
image: "appc-logo.png",
fillColor: "blue"
});

win.addEventListener('focus', function() {
setTimeout(function() {
splashView.startAnimation();
},1000);
});

win.add(splashView);
win.open();
```

### Author
Hans Knoechel ([@hansemannnn](https://twitter.com/hansemannnn) / [Web](http://hans-knoechel.de))

### License
Apache 2.0

### Contributing
Code contributions are greatly appreciated, please submit a new [pull request](https://github.com/hansemannn/ti.splashview/pull/new/master)!