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

标签 html css angular angular-animations

我正在尝试使用伪 :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/

相关文章:

javascript - 一个 JS 文件中的多个 keyup 事件

css - 如何使用 css 更改 kendo UI angular 中开关的高度和宽度?

javascript - ng add @nguniversal/express-engine@next 时出错

html - 1px 的 border-radius 是否比 10px 的 border-radius 性能更好?

html - 在 R 中清理 HTML 数据

css - 希望导航栏在最小化浏览器窗口时不移动

特定类的 CSS 第一个 child

Angular 路由器事件 NavigationEnd 未按预期触发

javascript - HTML:在图像和视频上显示透明封面

asp.net - 在母版页中更改和保留 DIV 选定标记