Animation: Move Div tag to a new position : Animation « Ext JS « JavaScript DHTML






Animation: Move Div tag to a new position

  

<html>
<head>
<title>Hello World Window</title>
<link rel="stylesheet" type="text/css" href="ext-3.0.0/resources/css/ext-all.css" />
<script type="text/javascript" src="ext-3.0.0/adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="ext-3.0.0/ext-all.js"></script>
<style type="text/css">
div {
  border  : 1px solid #AAAAAA; 
  width   : 200; 
  cursor  : pointer;
  padding : 2px 2px 2px 2px;
  margin  : 2px 2px 2px 2px;  
}  
</style>
</head>
<body>
<script type="text/javascript">

Ext.onReady(function() {

  var myDiv1 = Ext.get('div1');
  var newX = 50;
  var newY = 10;
  
  myDiv1.moveTo(newX, newY, {
    callback : function() {
      var msgX = Math.ceil(this.getX());
      var msgY= Math.ceil(this.getY());        
      var msg = 'X = ' + msgX + ' Y = ' + msgY;
      this.update(msg);
    }
  });


});
</script> 
<div id='div1'>asdf</div>

</body>
</html>

   
    
  








Related examples in the same category

1.Hide panel with slidein
2.Fade out block and inline tags
3.Fadein block and inline tags
4.Block and inline frame animation
5.Fly away ghost
6.Scale animation
7.Slide out animation
8.Slide in animation
9.Switchoff Animation
10.Animated window display
11.Highlight block and inline tags
12.Puff inline and block tags
13.Shift a tag