## Built-in transition You can use Element's built-in transitions directly. Before that, please read the [transition docs](https://vuejs.org/v2/api/#transition). ### fade :::demo We have two fading effects: `el-fade-in-linear` and `el-fade-in`. ```html ``` ::: ### zoom :::demo `el-zoom-in-center`, `el-zoom-in-top` and `el-zoom-in-bottom` are provided. ```html ``` ::: ### collapse For collapse effect, use the `el-collapse-transition` component. :::demo ```html ``` ::: ### On demand ```js // fade/zoom import 'element-ui/lib/theme-chalk/base.css'; // collapse import CollapseTransition from 'element-ui/lib/transitions/collapse-transition'; import Vue from 'vue' Vue.component(CollapseTransition.name, CollapseTransition) ```