add NumberKeyboard component

This commit is contained in:
陈嘉涵
2017-09-08 21:06:16 +08:00
parent c221922e04
commit f0cbcc99dc
9 changed files with 466 additions and 0 deletions
@@ -0,0 +1,21 @@
@keyframes van-slide-bottom-enter {
from {
transform: translate3d(0, 100%, 0);
}
}
@keyframes van-slide-bottom-leave {
to {
transform: translate3d(0, 100%, 0);
}
}
.van-slide-bottom {
&-enter-active {
animation: van-slide-bottom-enter .3s both ease;
}
&-leave-active {
animation: van-slide-bottom-leave .3s both ease;
}
}