16 Eylül 2013 Pazartesi

18.09.2013
 
Stop
 
 
 
Seçilen hareket halindeki animasyonları durdurmak için kullanılır.
 
kodlar :
$(document).ready(function(){
   $("#start").click(function(){
    $("div").animate({height:300},3000);
    $("div").animate({width:300},3000);
  });
  $("#stop").click(function(){
    $("div").stop();
  });

});
</script>
</head>
<body>
<p>
<button id="start">ANIMASYONA BASLA</button>
<button id="stop">ANINDA DURDUR</button>
</p>
<div style="background:#98bf21;height:100px;width:100px">
</div>
</body>
 
 


Hiç yorum yok:

Yorum Gönder