在手机上,导航栏上有一个下拉菜单。但它太慢了。
是基于JQuery的吗?或者它是基于CSS转换的?我如何加快速度呢?
发布于 2014-10-15 18:30:04
它是基于CSS转换的,请尝试从该类的转换属性中更改高度值。
.collapsing {
position: relative;
height: 0;
overflow: hidden;
-webkit-transition: height .35s ease;
-o-transition: height .35s ease;
transition: height .35s ease;
}https://stackoverflow.com/questions/26378785
复制相似问题