## Built-in transition
If you want, you can use Element built-in transition directly. Of course you need to know [vue#transition](https://vuejs.org/v2/api/#transition).
### fade
:::demo You can use `el-fade-in-linear` and `el-fade-in`.
```html
Click Me
.el-fade-in-linear
.el-fade-in
```
:::
### zoom
:::demo You can use `el-zoom-in-center`, `el-zoom-in-top` and `el-zoom-in-bottom`.
```html
Click Me
.el-zoom-in-center
.el-zoom-in-top
.el-zoom-in-bottom
```
:::
### collapse
`el-collapse-transition` is a special component that implement collapse transtion.
:::demo
```html
Click Me
el-collapse-transition
el-collapse-transition
```
:::