<a class="baslat" href="#">ANİMASYONU BAŞLAT</a>
<a class="durdur" href="#">ANİMASYONU DURDUR</a>
<div></div>
div{width:150px; height:150px; background:red;}
a{display: inline-block; background: #00FF99; padding:20px; border-bottom:4px solid #00CC00; color:#00CC99; text-decoration:none; margin-bottom:20px;}
$(".baslat").click(function(){
$("div").animate({height: 400}, 2000);
});
$(".durdur").click(function(){
$("div").stop();
});
This Pen doesn't use any external CSS resources.