您可以使用 jQuery 的原生 animate() 函数:
HTML:
<img height="100" width="100" id="box" src="#" />
CSS:
#box{
position:absolute;
right:0px;
top:0px;
}
jQuery:
$(function() {
$theBox = $("#box");
$theBox.animate({
top:$(window).height()-$theBox.height()
}, 1000);
});
http://jsfiddle.net/hNYDe/