<a href="#">TIKLA</a>
<div></div>
<span>Kuyruk uzunluğu:<strong></strong></span>
a{display: inline-block; background: #00FF99; padding:20px; border-bottom:4px solid #00CC00; color:#00CC99; text-decoration:none; margin-bottom:20px;}
div{background: red; width:150px; height:150px;}
$("a").click(function(){
var div = $("div");
div.animate({height: 400}, "slow");
div.animate({width: 400}, "slow");
div.animate({height: 150}, "slow");
div.animate({width: 150}, "slow");
$("strong").text(div.queue().length);
});
This Pen doesn't use any external CSS resources.