Using Animating Templates in JQuery

Goud.Kv
Posted by Goud.Kv under jQuery category on | Points: 40 | Views : 1030
Below Jquery snip is necessary to provide animation.

$('p').animate({
left: '+=90px',
top: '+=150px',
opacity: 0.25
}, 900, 'linear', function() {

// write the function code on animation complete

});

Comments or Responses

Login to post response