Guest User

Untitled

a guest
Jul 15th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. var win = Ti.UI.createWindow();
  2. var view = Ti.UI.createImageView({
  3. image:"myimage.png",
  4. width:24,
  5. height:24
  6. });
  7. var button = Ti.UI.createButton({
  8. title:"Animate",
  9. width:80,
  10. height:40,
  11. bottom:10
  12. });
  13. button.addEventListener("click",function(){
  14. view.animate({top:0,duration:500});
  15. });
  16. win.add(view);
  17. win.add(button);
  18. win.open();
Add Comment
Please, Sign In to add comment