Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 1.01 KB

README.md

File metadata and controls

39 lines (28 loc) · 1.01 KB

Ti.SplashView

Contact

Support for the Twitter-like splash-screen library CBZSplashView in Titanium. Thanks to @callumboddy for that awesome library!

Twitter Example

Example

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 / Web)

License

Apache 2.0

Contributing

Code contributions are greatly appreciated, please submit a new pull request!