Jquery Control 画像が div 内
で上下に移動する
たとえば(スタックオーバーフローで例を見ました)
$(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 );
}