0
這是我迄今所管理,但似乎沒有人能幫助我的最後幾個功能:如何在循環動畫暫停時進行滾動?
<script type='text/javascript''>
$(document).ready(function() {
swing();
});
function swing() { //making the div swing
$('#share').animate({right: '210px'}, 1000, function(){swingback()});
}
function swingback() { //making the div swing back
$('#share').animate({right: '220px'}, 1000, function(){swing()});
}
$('#share').mouseenter(function() { // stop any animation if the mouse enters the div
$(this).stop();
}).mouseleave(function() { // continue animation once the mouse has left the div
swingBack();
});
</script>
那麼它現在做了什麼?它不能停止,還是重新開始? – 2010-11-16 04:21:04