init
This commit is contained in:
26
uni_modules/nutui-uni/styles/animation/drop.scss
Normal file
26
uni_modules/nutui-uni/styles/animation/drop.scss
Normal file
@@ -0,0 +1,26 @@
|
||||
@keyframes nutDropIn {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: scaleY(0.8);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: scaleY(1);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes nutDropOut {
|
||||
0% {
|
||||
opacity: 1;
|
||||
transform: scaleY(1);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: scaleY(0.8);
|
||||
}
|
||||
}
|
||||
|
||||
// select、dropdown
|
||||
@include make-animation(nutDrop);
|
||||
Reference in New Issue
Block a user