91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

angular2系列之路由轉場動畫的示例代碼

發布時間:2020-10-10 05:00:05 來源:腳本之家 閱讀:147 作者:steryn 欄目:web開發

Angular2的動畫系統賦予了制作各種動畫效果的能力,致力于構建出與原生CSS動畫性能相同的動畫。

Angular2的動畫主要是和@Component結合在了一起。

animations元數據屬性在定義@Component裝飾。就像template元數據屬性!這樣就可以讓動畫邏輯與其應用代碼緊緊集成在一起,這讓動畫可以更容易的出發與控制。

一.在app.mudule.ts中引入:

import { BrowserAnimationsModule } from '@angular/platform-browser/animations';

并在@NgModule中的imports添加:

imports: [BrowserAnimationsModule],

二.創建文件定義名為animations.ts用來書寫轉場動畫

import { animate, AnimationEntryMetadata, state, style, transition, trigger } from'@angular/core';
// Component transition animations
export const slideInDownAnimation: AnimationEntryMetadata =
// 動畫觸發器名稱
trigger('routeAnimation', [
  state('*',
    style({
      opacity: 1,
      transform: 'translateX(0)'
    })
  ),
  transition(':enter', [
    style({
      opacity: 0,
      transform: 'translateX(-100%)'
    }),
    animate('0.2s ease-in')
  ]),
  transition(':leave', [
    animate('0.5s ease-out', style({
      opacity: 0,
      transform: 'translateY(100%)'
    }))
  ])
]);

三.在需要添加轉場動畫的頁面操作

引入import {HostBinding } from '@angular/core';(如果引入過直接將HostBinding添加進去就好,不要重復引入,多嘴了...)

再引入你寫好的動畫模板:import { slideInDownAnimation } from '../animation';

在@Component中添加:animations:[slideInDownAnimation],

最后:

  // 添加@HostBinding屬性添加到類中以設置這個路由組件元素的動畫和樣式
  @HostBinding('@routeAnimation') routeAnimation = true;
  @HostBinding('style.display') display = 'block';
  @HostBinding('style.position') position = 'absolute';

四.至此你可以去瀏覽器看看效果了,如果沒有錯誤

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

靖安县| 广昌县| 新邵县| 阿尔山市| 葫芦岛市| 宜兰市| 阳信县| 陇西县| 益阳市| 叶城县| 夏津县| 合阳县| 故城县| 溧阳市| 三穗县| 定西市| 应用必备| 溧水县| 肇州县| 昭通市| 安宁市| 渭源县| 沙坪坝区| 无锡市| 通州区| 临夏市| 岑巩县| 郎溪县| 将乐县| 山东省| 沁阳市| 康平县| 杂多县| 韶山市| 平泉县| 汉源县| 界首市| 青铜峡市| 亳州市| 治多县| 北宁市|