almost 9 years ago
If we want to create custom animation than for this purpose jquery animation is used.
jquery animation method syntax is below:-
Syntax :-
Queue functionality of jquery animate() method
jquery contains queue functionality by default. i.e if we write animate() calls one after other, jquery will create internal queue for these calls and then run these calls one after other.
so if we want to run different animation one after other than this functionality of jquery animate() method is very helpful.
For using this functionality first we have to include below script into our head tag :-
below is the html code :-
below is the css for above code:-
below is jquery code for above html:-
<script>
$(document).ready(function(){
$("button").click(function(){
var p = $("div");
p.animate({height: '400px', opacity: '0.6'}, "fast");
p.animate({width: '400px', opacity: '0.9'}, "fast");
p.animate({height: '200px', opacity: '0.6'}, "fast");
p.animate({width: '200px', opacity: '0.9'}, "slow");
});
});
</script>
<script>
$(document).ready(function(){
$("button").click(function(){
var p = $("div");
p.animate({height: '400px', opacity: '0.6'}, "fast");
p.animate({width: '400px', opacity: '0.9'}, "fast");
p.animate({height: '200px', opacity: '0.6'}, "fast");
p.animate({width: '200px', opacity: '0.9'}, "slow");
});
});
</script>
below is jquery fiddle link where i have run above code:-
Can you help out the community by solving one of the following Javascript problems?
Do activity (Answer, Blog) > Earn Rep Points > Improve Rank > Get more opportunities to work and get paid!
For more topics, questions and answers, please visit the Tech Q&A page.
0 Comment(s)