增加基本项目配置
This commit is contained in:
17
node_modules/animate.css/source/rotating_entrances/rotateIn.css
generated
vendored
Normal file
17
node_modules/animate.css/source/rotating_entrances/rotateIn.css
generated
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
@keyframes rotateIn {
|
||||
from {
|
||||
transform-origin: center;
|
||||
transform: rotate3d(0, 0, 1, -200deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
transform-origin: center;
|
||||
transform: translate3d(0, 0, 0);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.rotateIn {
|
||||
animation-name: rotateIn;
|
||||
}
|
17
node_modules/animate.css/source/rotating_entrances/rotateInDownLeft.css
generated
vendored
Normal file
17
node_modules/animate.css/source/rotating_entrances/rotateInDownLeft.css
generated
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
@keyframes rotateInDownLeft {
|
||||
from {
|
||||
transform-origin: left bottom;
|
||||
transform: rotate3d(0, 0, 1, -45deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
transform-origin: left bottom;
|
||||
transform: translate3d(0, 0, 0);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.rotateInDownLeft {
|
||||
animation-name: rotateInDownLeft;
|
||||
}
|
17
node_modules/animate.css/source/rotating_entrances/rotateInDownRight.css
generated
vendored
Normal file
17
node_modules/animate.css/source/rotating_entrances/rotateInDownRight.css
generated
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
@keyframes rotateInDownRight {
|
||||
from {
|
||||
transform-origin: right bottom;
|
||||
transform: rotate3d(0, 0, 1, 45deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
transform-origin: right bottom;
|
||||
transform: translate3d(0, 0, 0);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.rotateInDownRight {
|
||||
animation-name: rotateInDownRight;
|
||||
}
|
17
node_modules/animate.css/source/rotating_entrances/rotateInUpLeft.css
generated
vendored
Normal file
17
node_modules/animate.css/source/rotating_entrances/rotateInUpLeft.css
generated
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
@keyframes rotateInUpLeft {
|
||||
from {
|
||||
transform-origin: left bottom;
|
||||
transform: rotate3d(0, 0, 1, 45deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
transform-origin: left bottom;
|
||||
transform: translate3d(0, 0, 0);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.rotateInUpLeft {
|
||||
animation-name: rotateInUpLeft;
|
||||
}
|
17
node_modules/animate.css/source/rotating_entrances/rotateInUpRight.css
generated
vendored
Normal file
17
node_modules/animate.css/source/rotating_entrances/rotateInUpRight.css
generated
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
@keyframes rotateInUpRight {
|
||||
from {
|
||||
transform-origin: right bottom;
|
||||
transform: rotate3d(0, 0, 1, -90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
transform-origin: right bottom;
|
||||
transform: translate3d(0, 0, 0);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.rotateInUpRight {
|
||||
animation-name: rotateInUpRight;
|
||||
}
|
Reference in New Issue
Block a user