gpt4 book ai didi

css - 有没有什么办法可以通过变换属性实现不断增长的 div 动画?

转载 作者:太空宇宙 更新时间:2023-11-04 12:44:42 25 4
gpt4 key购买 nike

我使用以下样式开发了一个 div 在其中增长的动画:

.animation-start {
overflow: hidden;
height: 0;
}

.animation-end {
height: 100px;
}

但这种方法的问题在于它在移动设备上呈现不流畅。目前,唯一在手机上流畅呈现的动画是使用 transform 属性的动画。有什么方法可以仅使用变换属性(不使用高度属性)来实现不断增长的 div 动画?

最佳答案

是的,您可以只向元素添加持续时间:

$(document).click(function(){
$('div').toggleClass('animation-end');
});
div {
background: #ffc;
transition-duration: 300ms;
}
.animation-start {
overflow: hidden;
height: 0;
}
.animation-end {
height: 100px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div class="animation-start">asdf</div>
click anywhere

关于css - 有没有什么办法可以通过变换属性实现不断增长的 div 动画?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26604366/

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