adding initial fast-api
This commit is contained in:
28
fast-api/bower_components/animate.css/source/specials/hinge.css
vendored
Normal file
28
fast-api/bower_components/animate.css/source/specials/hinge.css
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
@keyframes hinge {
|
||||
0% {
|
||||
transform-origin: top left;
|
||||
animation-timing-function: ease-in-out;
|
||||
}
|
||||
|
||||
20%, 60% {
|
||||
transform: rotate3d(0, 0, 1, 80deg);
|
||||
transform-origin: top left;
|
||||
animation-timing-function: ease-in-out;
|
||||
}
|
||||
|
||||
40%, 80% {
|
||||
transform: rotate3d(0, 0, 1, 60deg);
|
||||
transform-origin: top left;
|
||||
animation-timing-function: ease-in-out;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translate3d(0, 700px, 0);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.hinge {
|
||||
animation-name: hinge;
|
||||
}
|
||||
17
fast-api/bower_components/animate.css/source/specials/rollIn.css
vendored
Normal file
17
fast-api/bower_components/animate.css/source/specials/rollIn.css
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
|
||||
|
||||
@keyframes rollIn {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: none;
|
||||
}
|
||||
}
|
||||
|
||||
.rollIn {
|
||||
animation-name: rollIn;
|
||||
}
|
||||
16
fast-api/bower_components/animate.css/source/specials/rollOut.css
vendored
Normal file
16
fast-api/bower_components/animate.css/source/specials/rollOut.css
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
|
||||
|
||||
@keyframes rollOut {
|
||||
0% {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
|
||||
}
|
||||
}
|
||||
|
||||
.rollOut {
|
||||
animation-name: rollOut;
|
||||
}
|
||||
Reference in New Issue
Block a user