我正在尝试与函数
相反document.getElementById('testImage').style.height='75px';
$("#testImage").animate({
height:'0px',
width:'100px'
});
它对我的图像有完美的效果,但我希望动画缩小到图像底部而不是顶部的可见光。这可能吗?
答案 0 :(得分:1)
我为你做了一个小提琴:
$("#testImage").animate({
height:'0px',
width:'100px',
top:'300px'
});
CSS:
#testImage {
position:relative;
top:0;
}
答案 1 :(得分:0)
您只需要找到一些方法将图像修复到相关区域的底部。例如,可以通过将容器设置为position: relative
,将动画元素设置为position: absolute
和bottom: 0
来实现。
答案 2 :(得分:0)
使用CSS,为您的图片设置以下规则:
position:relative;
bottom:0px;
确保它的容器有适当的高度。