Guest User

Untitled

a guest
Feb 18th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. var view = Titanium.UI.createImageView({
  2. image:'zebra.jpg',
  3. width:'auto',
  4. height:'auto'
  5. });
  6. var x=0;
  7.  
  8. function zoom(){
  9. if(x==1){
  10. view.animate({width:view.width/2, height:view.height/2});
  11. x=0;
  12. }
  13. else{
  14. view.animate({width:view.width*2, height:view.height*2});
  15. x=1;
  16. }
  17. }
  18.  
  19. view.addEventListener('doubletap',zoom);
  20.  
  21.  
  22. win1.add(view);
Add Comment
Please, Sign In to add comment