Linear animation : Animation « jQuery « JavaScript DHTML






Linear animation

   

<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
            $("div").animate({height:200, width:400, opacity: .5}, 1000, "linear", function(){alert("all done");} );

        });
    </script>
  <style>
  div { 
    background-color:red; 
    width:500px; 
    height:500px; 
    border:1px solid black;
  }
  </style>
    
  </head>
  <body>
    <body>
          <div>Click me</div>
    </body>
</html>

   
    
    
  








Related examples in the same category

1.Animation: border width
2.Animation call back
3.Cascade animation
4.Animation in sequence
5.Animation: easing in
6.Animation: font size
7.Animation: height
8.Animation: movement
9.Animation: opacity
10.Animation queue
11.Animation: show
12.Animation: toggle
13.Width changing animation
14.Stop an animation
15.Cascade fade out animation
16.jQuery animation: resize and change color
17.Animate width and height
18.Show the length of the queue.
19.Animates all paragraphs to fade out, completing the animation within 600 milliseconds.
20.Animates first paragraph to fade to an opacity of 0.33 (33%, about one third visible), completing the animation within 600 milliseconds.
21.dequeue(): Removes a queued function and executes it.
22.Use dequeue to end a custom queue function which allows the queue to keep going.
23.queue() Returns a reference to the first element's queue (which is an array of functions).
24.queue(callback): Adds a new function, to be executed, onto the end of the queue of all matched elements.
25.Width animation