## ビルトイントランジション Elementにビルトインされているトランジションをダイレクトに使うことができます。利用の前に、[transition docs](https://vuejs.org/v2/api/#transition)を読むことを勧めます。 ### フェード :::demo 2つのフェード効果が提供されています。: `el-fade-in-linear` と `el-fade-in` ```html ``` ::: ### ズーム :::demo `el-zoom-in-center`、 `el-zoom-in-top` と `el-zoom-in-bottom` が提供されています。 ```html ``` ::: ### コラプス コラプスの効果を利用するためには、`el-collapse-transition` コンポーネントを用います。 :::demo ```html ``` ::: ### オンデマンド ```js // fade/zoom import 'element-plus/lib/theme-chalk/base.css'; // collapse import CollapseTransition from 'element-plus/lib/transitions/collapse-transition'; import Vue from 'vue' Vue.component(CollapseTransition.name, CollapseTransition) ```