a b {
transform: translateX(100px);
transition: all 0.5s ease-out;
}
a.show b {
transform: translateX(0);
}
通过 JS 改变 a 的 class 为 show 时,b 的过渡动画完全没有。
经尝试,断定任意 transition 均无效。
b {
transform: translateX(100px);
transition: all 0.5s ease-out;
}
b.show {
transform: translateX(0);
}
过渡动画正常。
使用 transform: scale()
的 animation
导致页面帧率很低,设备发热严重。
1
asadegg 2018-10-19 12:02:39 +08:00
老哥,我建议你小程序社区也发一份
|