first commit
This commit is contained in:
commit
eb2f504652
32490 changed files with 5731109 additions and 0 deletions
21
node_modules/@quasar/extras/animate/flipOutY.css
generated
vendored
Normal file
21
node_modules/@quasar/extras/animate/flipOutY.css
generated
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
@keyframes flipOutY {
|
||||
from {
|
||||
transform: perspective(400px);
|
||||
}
|
||||
|
||||
30% {
|
||||
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
to {
|
||||
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.flipOutY {
|
||||
animation-duration: calc(var(--animate-duration) * 0.75);
|
||||
backface-visibility: visible !important;
|
||||
animation-name: flipOutY;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue