2

Jquery控制图像在div内上下移动
嗨,我需要你的帮助,让图像在某个div内上下移动,

例如(我在stackoverflow中看到了这个例子)

http://jsfiddle.net/PKBXL/29/

4

1 回答 1

3
$(document).ready(function() {
    var intId = setInterval(animateImage,1000);
    var intId=   setInterval(animateupImage,1000);
}); 

function animateImage() {
    $('#bee').animate({bottom: '-50%'}, 3000, 'linear', 1000);
      }
function animateupImage() {
   $('#bee').animate({bottom: '0%'}, 3000, 'linear',1000 );
  }

演示

于 2012-10-03T09:34:21.147 回答