Jquery控制图像在div内上下移动
嗨,我需要你的帮助,让图像在某个div内上下移动,
例如(我在stackoverflow中看到了这个例子)
Jquery控制图像在div内上下移动
嗨,我需要你的帮助,让图像在某个div内上下移动,
例如(我在stackoverflow中看到了这个例子)
$(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 );
}