Skip to content

Instantly share code, notes, and snippets.

@minhnc
Created March 14, 2012 10:47
Show Gist options
  • Save minhnc/2035711 to your computer and use it in GitHub Desktop.
Save minhnc/2035711 to your computer and use it in GitHub Desktop.
Animation ImageView
var win = Ti.UI.createWindow();
var images = [
'images/home.png',
'images/cloud.png',
'images/cart.png'
];
// Create an ImageView.
var anImageView = Ti.UI.createImageView({
images : images,
duration: 1000,
repeatCount: 0
});
win.add(anImageView);
win.open();
anImageView.start();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment