iview/styles/common/transition.less

16 lines
264 B
Text
Raw Normal View History

2016-09-09 14:29:19 +08:00
// Vue transition
.fade-transition {
.transition(opacity @transition-time @ease-in-out);
}
.fade-enter, .fade-leave {
opacity: 0;
}
.height-transition{
.transition(all @transition-time @ease-in-out);
}
.height-enter, .height-leave {
height: 0;
2016-09-09 14:29:19 +08:00
}