Skip to content

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

License

Notifications You must be signed in to change notification settings

hansemannn/ti.splashview

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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!

About

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

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published