Effect queue operation, queue, dequeue and clearQueue - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:queue

Description

Effect queue operation, queue, dequeue and clearQueue

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    var div = $("div");
    $("#start").click(function(){
        div.animate({height: 300}, "slow");
        div.animate({width: 300}, "slow");
        div.queue(function () {
            div.css("background-color", "red");
            div.dequeue();
        });/*from  w ww  .ja v a 2  s  .  c om*/
        div.animate({height: 100}, "slow");
        div.animate({width: 100}, "slow");
    });
    $("#stop").click(function(){
        div.clearQueue();
    });
});
</script>
</head>
<body>

<p>
<button id="start">Start Animation</button>
<button id="stop">Stop Animation</button>
</p>

<div style="background:#98bf21;height:100px;width:100px;position:relative"></div>

</body>
</html>

Related Tutorials