动画不生效
来源:7-5 搜索框动画效果实现
我叫小樱桃呀
2020-08-17
我好绝望啊QAQ
.slide-enter {
transition: all .2s ease-out;
}
.slide-enter-active {
width: 240px;
}
.slide-exit {
transition: all .2s ease-out;
}
.slide-exit-active {
width: 160px;
}
这样就不生效
&.enter{
transition: all .2s ease-out;
}
&.enter-active {
width:240px;
}
&.exit{
transition: all .2s ease-out;
}
&.exit-active {
width: 160px;
}
这样就生效
为啥啊
写回答
2回答
-
Dell
2020-08-23
把你template的代码发上来,你template上面估计设置没有设置前缀
022020-09-12 -
Moqqll
2020-08-22
换一批的动画不生效?
00
相似问题