我在我的angular 7应用程序中添加了一些交错动画,以使元素在页面加载时进行动画处理。我在我的一个组件上遇到了这个奇怪的z-index问题。
动画代码是这样的:
@Component({
selector: 'track-page',
templateUrl: './track-page.component.html',
styleUrls: ['./track-page.component.scss'],
animations: [
trigger('fadeIn', [
transition(':enter', [
query('*', style({opacity: 0})),
query('*', [
animate('500ms', style({opacity: 1}))
]),
])
]),
trigger('swipeUp', [
transition('void => *', [
query('*', style({opacity: 0, transform: 'translate3d(0,20%,0)'})),
query('*', stagger(10, [
animate('700ms ease-in', keyframes([
style({opacity: 1, transform: 'none', offset: 1})
]))
]))
])
])
]
})
此代码仅在webkit浏览器上导致以下结果:
共享组件应该出现在所有其他元素的前面,但是节拍器图标出现在顶部。我尝试在share组件上设置max z-index,但是没有运气。
答案 0 :(得分:1)
我找到了一个解决方案,我尝试将自己的translate3d更改为一个translateY,但这并没有改变。因此,我在共享组件上设置了transform: translate3d(0, 0, 1px);
,以使共享组件现在具有最高的z索引,现在可以在所有浏览器上正确覆盖所有其他元素。
答案 1 :(得分:1)
我在 z-index
和动画方面遇到了类似的问题(索引 > 0 的项目在过渡期间重叠组件),this article 非常有帮助。您只需在动画前后设置 z-index
样式。不要忘记 position: relative
使 z-indexes 工作。
transition(
"void => prev", // ---> Entering --->
[
// In order to maintain a zIndex of 2 throughout the ENTIRE
// animation (but not after the animation), we have to define it
// in both the initial and target styles. Unfortunately, this
// means that we ALSO have to define target values for the rest
// of the styles, which we wouldn't normally have to.
style({
left: -100,
opacity: 0.0,
zIndex: 2
}),
animate(
"200ms ease-in-out",
style({
left: 0,
opacity: 1.0,
zIndex: 2
})
)
]
),