gpt4 book ai didi

html - Angular 4 动画正确地左、右、上、下,但不适用于转换(translateX、translateY、translateZ)

转载 作者:行者123 更新时间:2023-11-28 15:21:09 26 4
gpt4 key购买 nike

我正在尝试使用伪 :enter:leave 使用 3D CSS 表达式的状态更改表达式使用 Angular 4.1.2 为路由器转换设置动画。

阅读angular.io关于此的文档描述了 void => ** => void 用于 :enter:leave 伪转换.

尝试从 this post 进行滑入滑出 转换后,我最终可以通过在我的组件 css 文件中设置 :host {postion:relative} 来让它工作(应该让作者知道)。

这有效:

trigger('routerAnimation', [
transition(':enter', [
style({ right: '-400%' }),
animate('.2s ease-in-out', style({ right: 0 }))
]),

transition(':leave', [
animate('.2s ease-in-out', style({ right: '-400%' }))
])
]);

这没有:

trigger('routerAnimation', [
transition(':enter', [
style({ transform: 'translateZ(-400px)' }),
animate('.2s ease-in-out', style({ transform: 'translateZ(0)' }))
]),

transition(':leave', [
style({ transform: 'translateZ(0)' }),
animate('.2s ease-in-out', style({ transform: 'translateZ(-400px)' }))
])
]);

我真的很困惑为什么会这样,我还尝试将我的 :host 定位从 relative 设置为 absolute 只是为了确保我没有犯 CSS 错误。

任何帮助都会非常棒 :)

最佳答案

我想你忘了添加 transform: perspective(XXXpx);
这就是为什么您看不到 translateZ 效果的原因。 我尝试使用这样的动画:

import { animate, AnimationEntryMetadata, state, style, transition, trigger } from '@angular/core';

// Component transition animations
export const slideInDownAnimation: AnimationEntryMetadata =
trigger('routeAnimation', [
state('*',
style({
opacity: 1,
transform: 'perspective(500px) translateZ(0px)',
})
),
transition(':enter', [
style({
opacity: 0,
transform: 'perspective(500px) translateZ(-400px)',
}),
animate('10s ease')
]),
transition(':leave', [
animate('10s ease', style({
opacity: 0,
transform: 'perspective(500px) translateZ(-400px)',
}))
])
]);

而且效果很好。
检查此以查找有关 translateZ 的更多信息:
https://developer.mozilla.org/en-US/docs/Web/CSS/transform-function/translate3d

如果您的组件比屏幕大,您将看不到动画,或者您需要滚动页面才能找到它。所以在大多数情况下,您需要将 position:absolute 添加到组件 CSS(用于 :host 选择器)。或者你可以添加这样的修饰属性:

@HostBinding('@routeAnimation') public routeAnimation = true;
@HostBinding('style.display') display = 'block';
@HostBinding('style.position') position = 'absolute';

不要忘记添加:

import {HostBinding} from '@angular/core';

关于html - Angular 4 动画正确地左、右、上、下,但不适用于转换(translateX、translateY、translateZ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46126358/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com