Angular 4动画不适用于Safari iOS 9.3

我目前正在所有可能的浏览器中测试我的应用程序,并且我看到角度动画在Safari iOS 9.3中的行为不如预期.下班后
和小时试图解决它我来寻求帮助.提前致谢.

我的代码是:

的package.json

"dependencies": {
    "@angular/animations": "^4.3.2","@angular/cdk": "^2.0.0-beta.8","@angular/common": "^4.0.0","@angular/compiler": "^4.0.0","@angular/core": "^4.0.0","@angular/forms": "^4.0.0","@angular/http": "^4.0.0","@angular/material": "^2.0.0-beta.8","@angular/platform-browser": "^4.0.0","@angular/platform-browser-dynamic": "^4.0.0","@angular/router": "^4.0.0","@ngx-Meta/core": "^0.4.0-rc.2","@ngx-translate/core": "^7.1.0","@ngx-translate/http-loader": "^1.0.1","angular2-moment": "^1.6.0","core-js": "^2.4.1","express": "^4.15.4","lodash": "^4.17.4","ng2-pdf-viewer": "^1.1.1","ng2-translate": "^5.0.0","rxjs": "^5.4.1","web-animations-js": "^2.3.1","zone.js": "^0.8.14"
},

landing.component.ts

import { Component,HostBinding,ChangeDetectionStrategy } from '@angular/core';
import { stateTransition } from '../routing.animations';

@Component({
  selector: 'cp-landing',templateUrl: './landing.component.html',styleUrls: ['./landing.component.css'],changeDetection: ChangeDetectionStrategy.OnPush,animations: [ stateTransition() ]
})
export class LandingComponent {
  @HostBinding('@stateTransition') '';
}

routing.animations.ts

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

export function stateTransition() {
  return trigger('stateTransition',[
    state('void',style({
      transform: 'translateY(50%)',opacity: 0
    })),state('*',style({
      transform: 'translateY(0%)',opacity: 1
    })),// enter animation
    transition('void => *',animate('.5s 500ms')),// exit animation
    transition('* => void',animate('.5s'))
  ]);
}

我试着想出一个小提琴,但我无法重现错误.

我相信网络动画API需要Safari上的polyfill.并且默认情况下不启用.您只需要安装polyfill,然后在app的/ src文件夹中的polyfills.ts文件添加一行或两行.

见:How to add Web Animations API polyfill to an Angular 2 project created with Angular CLI

(复制下面的最佳答案)

使用较新的Webpack版Angular CLI添加polyfill更容易:

安装时

npm install web-animations-js --save

添加到polyfills.ts:

require('web-animations-js/web-animations.min');

如果我这样做,它也有效

import 'web-animations-js/web-animations.min';

相关文章

AngularJS 是一个JavaScript 框架。它可通过 注:建议把脚本放在 元素的底部。这会提高网页加载速度,因...
angluarjs中页面初始化的时候会出现语法{{}}在页面中问题,也即是页面闪烁问题。出现这个的原因是:由于...
AngularJS 通过被称为指令的新属性来扩展 HTML。AngularJS 指令AngularJS 指令是扩展的 HTML 属性,带有...
AngularJS 使用表达式把数据绑定到 HTML。AngularJS 表达式AngularJS 表达式写在双大括号内:{{ expres...
ng-repeat 指令可以完美的显示表格。在表格中显示数据 {{ x.Name }} {{ x.Country }} 使用 CSS 样式为了...
$http是 AngularJS 中的一个核心服务,用于读取远程服务器的数据。读取 JSON 文件下是存储在web服务器上...