クリック イベントで 360 度回転する画像があります。画像が回転したら、その画像を消したいです。助言がありますか?
$("#refresh").rotate({
bind:
{
click: function(){
$(this).rotate({ angle:0,animateTo:720,easing: $.easing.easeInOutExpo });
$(this).fadeOut("slow");
}
}
});
HTML
<div class="span4" style="float:right">
<img src="assets/img/refresh_btn.png" id="refresh" width="70" height="70"/>
</div>
どんな助けでも素晴らしいでしょう。ありがとう!