CSS3、WebKit 过渡顺序?如何排队等候转场?
我有以下问题:
-webkit-transition-property: top, bottom, z-index;
-webkit-transition-duration: 0.5s;
问题是我不希望 z-index 在 top & 之后转换。底部完成。
有没有办法告诉 Webkit 过渡到顶部/底部过渡,然后完成后立即或持续时间执行 z-index,无论哪种方式?
谢谢
I have the following:
-webkit-transition-property: top, bottom, z-index;
-webkit-transition-duration: 0.5s;
Problem is I don't want the z-index to transition until after top & bottom are done.
Is there a way to tell Webkit transition to transition top/bottom and then when done, do z-index instantly or with the duration, either way?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须指定 z-index 转换的延迟:
You have to specify a delay on the z-index transition:
对于您的信息,在 javascript 中,您还可以侦听
webkitTransitionEnd
事件并在触发此事件时修改 z-index。该事件有两个有用的属性:
And for your info, in javascript, you can also listen on the
webkitTransitionEnd
event and modify the z-index when this event is fired.This event have two useful properties :