gpt4 book ai didi

jquery - fadeIn后其他元素向下滑动

转载 作者:行者123 更新时间:2023-12-01 07:58:31 24 4
gpt4 key购买 nike

id想知道是否可以使用css3过渡,该元素在另一个淡入之后向下滑动。这是 fiddle ,所以可能会更清楚;) Fiddle

我喜欢这个#text在图像淡入后向下滑动,而不仅仅是跳下来;)

最佳答案

CSS

#container img{
overflow: hidden;
max-height: 0;
transition: all 1s;
-webkit-transition: all 1s;
}
#container img.shown {
max-height: 20em;
}

js

setTimeout(function() {
$("#container img").addClass('shown');
},1500);

html 未更改

遗憾的是,您无法将 max-height 动画设置为 auto 值,因此您必须在图片显示后选择合理的 max-height

关于jquery - fadeIn后其他元素向下滑动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21706892/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com