Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个页面,该页面根据设备方向显示和隐藏内容,但是我发现当您旋转并且内容显示/隐藏时会有一些跳跃/滞后。
是否可以仅使用 css 在显示/隐藏的 lelements 之间制作更平滑的过渡动画?
对于动画进出视图的元素,您可以使用transition-property: all;和transition-duration: 1s;(或您想要的任何持续时间)淡入/滑入所述元素。当然,这些 CSS 属性需要在某些浏览器中添加前缀。
transition-property: all;
transition-duration: 1s;