2023-03-25 00:22:11 +11:00
|
|
|
/* !
|
|
|
|
* animate.css -http://daneden.me/animate
|
|
|
|
* Version - 3.5.1
|
|
|
|
* Licensed under the MIT license - http://opensource.org/licenses/MIT
|
|
|
|
*
|
|
|
|
* Copyright (c) 2016 Daniel Eden */
|
|
|
|
|
|
|
|
.animated {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-duration: 1s;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-duration: 1s;
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-fill-mode: both;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-fill-mode: both;
|
|
|
|
}
|
|
|
|
|
|
|
|
.animated.infinite {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-iteration-count: infinite;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-iteration-count: infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
.animated.hinge {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-duration: 2s;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-duration: 2s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-duration: .75s;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-duration: .75s;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes bounce {
|
|
|
|
0%, 20%, 53%, 80%, to {
|
|
|
|
-webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
|
|
|
|
animation-timing-function: cubic-bezier(.215,.61,.355,1);
|
|
|
|
-webkit-transform: translateZ(0);
|
|
|
|
transform: translateZ(0);
|
|
|
|
}
|
|
|
|
40%, 43% {
|
|
|
|
-webkit-transform: translate3d(0,-30px,0);
|
|
|
|
transform: translate3d(0,-30px,0);
|
|
|
|
}
|
|
|
|
40%, 43%, 70% {
|
|
|
|
-webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
|
|
|
|
animation-timing-function: cubic-bezier(.755,.05,.855,.06);
|
|
|
|
}
|
|
|
|
70% {
|
|
|
|
-webkit-transform: translate3d(0,-15px,0);
|
|
|
|
transform: translate3d(0,-15px,0);
|
|
|
|
}
|
|
|
|
90% {
|
|
|
|
-webkit-transform: translate3d(0,-4px,0);
|
|
|
|
transform: translate3d(0,-4px,0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.bounce {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: bounce;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: bounce;
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-transform-origin: center bottom;
|
2023-03-25 00:22:11 +11:00
|
|
|
transform-origin: center bottom;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes flash {
|
|
|
|
0%, 50%, to {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
25%, 75% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.flash {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: flash;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: flash;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes pulse {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: scaleX(1);
|
|
|
|
transform: scaleX(1);
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
-webkit-transform: scale3d(1.05,1.05,1.05);
|
|
|
|
transform: scale3d(1.05,1.05,1.05);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-webkit-transform: scaleX(1);
|
|
|
|
transform: scaleX(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.pulse {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: pulse;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: pulse;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes rubberBand {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: scaleX(1);
|
|
|
|
transform: scaleX(1);
|
|
|
|
}
|
|
|
|
30% {
|
|
|
|
-webkit-transform: scale3d(1.25,.75,1);
|
|
|
|
transform: scale3d(1.25,.75,1);
|
|
|
|
}
|
|
|
|
40% {
|
|
|
|
-webkit-transform: scale3d(.75,1.25,1);
|
|
|
|
transform: scale3d(.75,1.25,1);
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
-webkit-transform: scale3d(1.15,.85,1);
|
|
|
|
transform: scale3d(1.15,.85,1);
|
|
|
|
}
|
|
|
|
65% {
|
|
|
|
-webkit-transform: scale3d(.95,1.05,1);
|
|
|
|
transform: scale3d(.95,1.05,1);
|
|
|
|
}
|
|
|
|
75% {
|
|
|
|
-webkit-transform: scale3d(1.05,.95,1);
|
|
|
|
transform: scale3d(1.05,.95,1);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-webkit-transform: scaleX(1);
|
|
|
|
transform: scaleX(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.rubberBand {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: rubberBand;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: rubberBand;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes shake {
|
|
|
|
0%, to {
|
|
|
|
-webkit-transform: translateZ(0);
|
|
|
|
transform: translateZ(0);
|
|
|
|
}
|
|
|
|
10%, 30%, 50%, 70%, 90% {
|
|
|
|
-webkit-transform: translate3d(-10px,0,0);
|
|
|
|
transform: translate3d(-10px,0,0);
|
|
|
|
}
|
|
|
|
20%, 40%, 60%, 80% {
|
|
|
|
-webkit-transform: translate3d(10px,0,0);
|
|
|
|
transform: translate3d(10px,0,0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.shake {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: shake;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: shake;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes headShake {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: translateX(0);
|
|
|
|
transform: translateX(0);
|
|
|
|
}
|
|
|
|
6.5% {
|
|
|
|
-webkit-transform: translateX(-6px) rotateY(-9deg);
|
|
|
|
transform: translateX(-6px) rotateY(-9deg);
|
|
|
|
}
|
|
|
|
18.5% {
|
|
|
|
-webkit-transform: translateX(5px) rotateY(7deg);
|
|
|
|
transform: translateX(5px) rotateY(7deg);
|
|
|
|
}
|
|
|
|
31.5% {
|
|
|
|
-webkit-transform: translateX(-3px) rotateY(-5deg);
|
|
|
|
transform: translateX(-3px) rotateY(-5deg);
|
|
|
|
}
|
|
|
|
43.5% {
|
|
|
|
-webkit-transform: translateX(2px) rotateY(3deg);
|
|
|
|
transform: translateX(2px) rotateY(3deg);
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
-webkit-transform: translateX(0);
|
|
|
|
transform: translateX(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.headShake {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-timing-function: ease-in-out;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-timing-function: ease-in-out;
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: headShake;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: headShake;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes swing {
|
|
|
|
20% {
|
|
|
|
-webkit-transform: rotate(15deg);
|
|
|
|
transform: rotate(15deg);
|
|
|
|
}
|
|
|
|
40% {
|
|
|
|
-webkit-transform: rotate(-10deg);
|
|
|
|
transform: rotate(-10deg);
|
|
|
|
}
|
|
|
|
60% {
|
|
|
|
-webkit-transform: rotate(5deg);
|
|
|
|
transform: rotate(5deg);
|
|
|
|
}
|
|
|
|
80% {
|
|
|
|
-webkit-transform: rotate(-5deg);
|
|
|
|
transform: rotate(-5deg);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-webkit-transform: rotate(0deg);
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.swing {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-transform-origin: top center;
|
2023-03-25 00:22:11 +11:00
|
|
|
transform-origin: top center;
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: swing;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: swing;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes tada {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: scaleX(1);
|
|
|
|
transform: scaleX(1);
|
|
|
|
}
|
|
|
|
10%, 20% {
|
|
|
|
-webkit-transform: scale3d(.9,.9,.9) rotate(-3deg);
|
|
|
|
transform: scale3d(.9,.9,.9) rotate(-3deg);
|
|
|
|
}
|
|
|
|
30%, 50%, 70%, 90% {
|
|
|
|
-webkit-transform: scale3d(1.1,1.1,1.1) rotate(3deg);
|
|
|
|
transform: scale3d(1.1,1.1,1.1) rotate(3deg);
|
|
|
|
}
|
|
|
|
40%, 60%, 80% {
|
|
|
|
-webkit-transform: scale3d(1.1,1.1,1.1) rotate(-3deg);
|
|
|
|
transform: scale3d(1.1,1.1,1.1) rotate(-3deg);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-webkit-transform: scaleX(1);
|
|
|
|
transform: scaleX(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.tada {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: tada;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: tada;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes wobble {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: none;
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
15% {
|
|
|
|
-webkit-transform: translate3d(-25%,0,0) rotate(-5deg);
|
|
|
|
transform: translate3d(-25%,0,0) rotate(-5deg);
|
|
|
|
}
|
|
|
|
30% {
|
|
|
|
-webkit-transform: translate3d(20%,0,0) rotate(3deg);
|
|
|
|
transform: translate3d(20%,0,0) rotate(3deg);
|
|
|
|
}
|
|
|
|
45% {
|
|
|
|
-webkit-transform: translate3d(-15%,0,0) rotate(-3deg);
|
|
|
|
transform: translate3d(-15%,0,0) rotate(-3deg);
|
|
|
|
}
|
|
|
|
60% {
|
|
|
|
-webkit-transform: translate3d(10%,0,0) rotate(2deg);
|
|
|
|
transform: translate3d(10%,0,0) rotate(2deg);
|
|
|
|
}
|
|
|
|
75% {
|
|
|
|
-webkit-transform: translate3d(-5%,0,0) rotate(-1deg);
|
|
|
|
transform: translate3d(-5%,0,0) rotate(-1deg);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-webkit-transform: none;
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.wobble {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: wobble;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: wobble;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes jello {
|
|
|
|
0%, 11.1%, to {
|
|
|
|
-webkit-transform: none;
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
22.2% {
|
|
|
|
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
|
|
|
|
transform: skewX(-12.5deg) skewY(-12.5deg);
|
|
|
|
}
|
|
|
|
33.3% {
|
|
|
|
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
|
|
|
|
transform: skewX(6.25deg) skewY(6.25deg);
|
|
|
|
}
|
|
|
|
44.4% {
|
|
|
|
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
|
|
|
|
transform: skewX(-3.125deg) skewY(-3.125deg);
|
|
|
|
}
|
|
|
|
55.5% {
|
|
|
|
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
|
|
|
|
transform: skewX(1.5625deg) skewY(1.5625deg);
|
|
|
|
}
|
|
|
|
66.6% {
|
|
|
|
-webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
|
|
|
|
transform: skewX(-.78125deg) skewY(-.78125deg);
|
|
|
|
}
|
|
|
|
77.7% {
|
|
|
|
-webkit-transform: skewX(.390625deg) skewY(.390625deg);
|
|
|
|
transform: skewX(.390625deg) skewY(.390625deg);
|
|
|
|
}
|
|
|
|
88.8% {
|
|
|
|
-webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
|
|
|
|
transform: skewX(-.1953125deg) skewY(-.1953125deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.jello {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: jello;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: jello;
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-transform-origin: center;
|
2023-03-25 00:22:11 +11:00
|
|
|
transform-origin: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes bounceIn {
|
|
|
|
0%, 20%, 40%, 60%, 80%, to {
|
|
|
|
-webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
|
|
|
|
animation-timing-function: cubic-bezier(.215,.61,.355,1);
|
|
|
|
}
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: scale3d(.3,.3,.3);
|
|
|
|
transform: scale3d(.3,.3,.3);
|
|
|
|
}
|
|
|
|
20% {
|
|
|
|
-webkit-transform: scale3d(1.1,1.1,1.1);
|
|
|
|
transform: scale3d(1.1,1.1,1.1);
|
|
|
|
}
|
|
|
|
40% {
|
|
|
|
-webkit-transform: scale3d(.9,.9,.9);
|
|
|
|
transform: scale3d(.9,.9,.9);
|
|
|
|
}
|
|
|
|
60% {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transform: scale3d(1.03,1.03,1.03);
|
|
|
|
transform: scale3d(1.03,1.03,1.03);
|
|
|
|
}
|
|
|
|
80% {
|
|
|
|
-webkit-transform: scale3d(.97,.97,.97);
|
|
|
|
transform: scale3d(.97,.97,.97);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transform: scaleX(1);
|
|
|
|
transform: scaleX(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.bounceIn {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: bounceIn;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: bounceIn;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes bounceInDown {
|
|
|
|
0%, 60%, 75%, 90%, to {
|
|
|
|
-webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
|
|
|
|
animation-timing-function: cubic-bezier(.215,.61,.355,1);
|
|
|
|
}
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translate3d(0,-3000px,0);
|
|
|
|
transform: translate3d(0,-3000px,0);
|
|
|
|
}
|
|
|
|
60% {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transform: translate3d(0,25px,0);
|
|
|
|
transform: translate3d(0,25px,0);
|
|
|
|
}
|
|
|
|
75% {
|
|
|
|
-webkit-transform: translate3d(0,-10px,0);
|
|
|
|
transform: translate3d(0,-10px,0);
|
|
|
|
}
|
|
|
|
90% {
|
|
|
|
-webkit-transform: translate3d(0,5px,0);
|
|
|
|
transform: translate3d(0,5px,0);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-webkit-transform: none;
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.bounceInDown {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: bounceInDown;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: bounceInDown;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes bounceInLeft {
|
|
|
|
0%, 60%, 75%, 90%, to {
|
|
|
|
-webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
|
|
|
|
animation-timing-function: cubic-bezier(.215,.61,.355,1);
|
|
|
|
}
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translate3d(-3000px,0,0);
|
|
|
|
transform: translate3d(-3000px,0,0);
|
|
|
|
}
|
|
|
|
60% {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transform: translate3d(25px,0,0);
|
|
|
|
transform: translate3d(25px,0,0);
|
|
|
|
}
|
|
|
|
75% {
|
|
|
|
-webkit-transform: translate3d(-10px,0,0);
|
|
|
|
transform: translate3d(-10px,0,0);
|
|
|
|
}
|
|
|
|
90% {
|
|
|
|
-webkit-transform: translate3d(5px,0,0);
|
|
|
|
transform: translate3d(5px,0,0);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-webkit-transform: none;
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.bounceInLeft {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: bounceInLeft;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: bounceInLeft;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes bounceInRight {
|
|
|
|
0%, 60%, 75%, 90%, to {
|
|
|
|
-webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
|
|
|
|
animation-timing-function: cubic-bezier(.215,.61,.355,1);
|
|
|
|
}
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translate3d(3000px,0,0);
|
|
|
|
transform: translate3d(3000px,0,0);
|
|
|
|
}
|
|
|
|
60% {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transform: translate3d(-25px,0,0);
|
|
|
|
transform: translate3d(-25px,0,0);
|
|
|
|
}
|
|
|
|
75% {
|
|
|
|
-webkit-transform: translate3d(10px,0,0);
|
|
|
|
transform: translate3d(10px,0,0);
|
|
|
|
}
|
|
|
|
90% {
|
|
|
|
-webkit-transform: translate3d(-5px,0,0);
|
|
|
|
transform: translate3d(-5px,0,0);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-webkit-transform: none;
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.bounceInRight {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: bounceInRight;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: bounceInRight;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes bounceInUp {
|
|
|
|
0%, 60%, 75%, 90%, to {
|
|
|
|
-webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
|
|
|
|
animation-timing-function: cubic-bezier(.215,.61,.355,1);
|
|
|
|
}
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translate3d(0,3000px,0);
|
|
|
|
transform: translate3d(0,3000px,0);
|
|
|
|
}
|
|
|
|
60% {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transform: translate3d(0,-20px,0);
|
|
|
|
transform: translate3d(0,-20px,0);
|
|
|
|
}
|
|
|
|
75% {
|
|
|
|
-webkit-transform: translate3d(0,10px,0);
|
|
|
|
transform: translate3d(0,10px,0);
|
|
|
|
}
|
|
|
|
90% {
|
|
|
|
-webkit-transform: translate3d(0,-5px,0);
|
|
|
|
transform: translate3d(0,-5px,0);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-webkit-transform: translateZ(0);
|
|
|
|
transform: translateZ(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.bounceInUp {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: bounceInUp;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: bounceInUp;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes bounceOut {
|
|
|
|
20% {
|
|
|
|
-webkit-transform: scale3d(.9,.9,.9);
|
|
|
|
transform: scale3d(.9,.9,.9);
|
|
|
|
}
|
|
|
|
50%, 55% {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transform: scale3d(1.1,1.1,1.1);
|
|
|
|
transform: scale3d(1.1,1.1,1.1);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: scale3d(.3,.3,.3);
|
|
|
|
transform: scale3d(.3,.3,.3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.bounceOut {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: bounceOut;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: bounceOut;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes bounceOutDown {
|
|
|
|
20% {
|
|
|
|
-webkit-transform: translate3d(0,10px,0);
|
|
|
|
transform: translate3d(0,10px,0);
|
|
|
|
}
|
|
|
|
40%, 45% {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transform: translate3d(0,-20px,0);
|
|
|
|
transform: translate3d(0,-20px,0);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translate3d(0,2000px,0);
|
|
|
|
transform: translate3d(0,2000px,0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.bounceOutDown {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: bounceOutDown;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: bounceOutDown;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes bounceOutLeft {
|
|
|
|
20% {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transform: translate3d(20px,0,0);
|
|
|
|
transform: translate3d(20px,0,0);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translate3d(-2000px,0,0);
|
|
|
|
transform: translate3d(-2000px,0,0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.bounceOutLeft {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: bounceOutLeft;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: bounceOutLeft;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes bounceOutRight {
|
|
|
|
20% {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transform: translate3d(-20px,0,0);
|
|
|
|
transform: translate3d(-20px,0,0);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translate3d(2000px,0,0);
|
|
|
|
transform: translate3d(2000px,0,0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.bounceOutRight {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: bounceOutRight;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: bounceOutRight;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes bounceOutUp {
|
|
|
|
20% {
|
|
|
|
-webkit-transform: translate3d(0,-10px,0);
|
|
|
|
transform: translate3d(0,-10px,0);
|
|
|
|
}
|
|
|
|
40%, 45% {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transform: translate3d(0,20px,0);
|
|
|
|
transform: translate3d(0,20px,0);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translate3d(0,-2000px,0);
|
|
|
|
transform: translate3d(0,-2000px,0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.bounceOutUp {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: bounceOutUp;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: bounceOutUp;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeIn {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fadeIn {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: fadeIn;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: fadeIn;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeInDown {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translate3d(0,-100%,0);
|
|
|
|
transform: translate3d(0,-100%,0);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transform: none;
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fadeInDown {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: fadeInDown;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: fadeInDown;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeInDownBig {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translate3d(0,-2000px,0);
|
|
|
|
transform: translate3d(0,-2000px,0);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transform: none;
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fadeInDownBig {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: fadeInDownBig;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: fadeInDownBig;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeInLeft {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translate3d(-100%,0,0);
|
|
|
|
transform: translate3d(-100%,0,0);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transform: none;
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fadeInLeft {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: fadeInLeft;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: fadeInLeft;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeInLeftBig {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translate3d(-2000px,0,0);
|
|
|
|
transform: translate3d(-2000px,0,0);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transform: none;
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fadeInLeftBig {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: fadeInLeftBig;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: fadeInLeftBig;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeInRight {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translate3d(100%,0,0);
|
|
|
|
transform: translate3d(100%,0,0);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transform: none;
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fadeInRight {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: fadeInRight;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: fadeInRight;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeInRightBig {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translate3d(2000px,0,0);
|
|
|
|
transform: translate3d(2000px,0,0);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transform: none;
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fadeInRightBig {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: fadeInRightBig;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: fadeInRightBig;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeInUp {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translate3d(0,100%,0);
|
|
|
|
transform: translate3d(0,100%,0);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transform: none;
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fadeInUp {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: fadeInUp;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: fadeInUp;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeInUpBig {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translate3d(0,2000px,0);
|
|
|
|
transform: translate3d(0,2000px,0);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transform: none;
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fadeInUpBig {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: fadeInUpBig;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: fadeInUpBig;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeOut {
|
|
|
|
0% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fadeOut {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: fadeOut;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: fadeOut;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeOutDown {
|
|
|
|
0% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translate3d(0,100%,0);
|
|
|
|
transform: translate3d(0,100%,0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fadeOutDown {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: fadeOutDown;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: fadeOutDown;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeOutDownBig {
|
|
|
|
0% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translate3d(0,2000px,0);
|
|
|
|
transform: translate3d(0,2000px,0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fadeOutDownBig {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: fadeOutDownBig;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: fadeOutDownBig;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeOutLeft {
|
|
|
|
0% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translate3d(-100%,0,0);
|
|
|
|
transform: translate3d(-100%,0,0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fadeOutLeft {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: fadeOutLeft;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: fadeOutLeft;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeOutLeftBig {
|
|
|
|
0% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translate3d(-2000px,0,0);
|
|
|
|
transform: translate3d(-2000px,0,0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fadeOutLeftBig {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: fadeOutLeftBig;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: fadeOutLeftBig;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeOutRight {
|
|
|
|
0% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translate3d(100%,0,0);
|
|
|
|
transform: translate3d(100%,0,0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fadeOutRight {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: fadeOutRight;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: fadeOutRight;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeOutRightBig {
|
|
|
|
0% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translate3d(2000px,0,0);
|
|
|
|
transform: translate3d(2000px,0,0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fadeOutRightBig {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: fadeOutRightBig;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: fadeOutRightBig;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeOutUp {
|
|
|
|
0% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translate3d(0,-100%,0);
|
|
|
|
transform: translate3d(0,-100%,0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fadeOutUp {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: fadeOutUp;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: fadeOutUp;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeOutUpBig {
|
|
|
|
0% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translate3d(0,-2000px,0);
|
|
|
|
transform: translate3d(0,-2000px,0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fadeOutUpBig {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: fadeOutUpBig;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: fadeOutUpBig;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes flip {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: perspective(400px) rotateY(-1turn);
|
|
|
|
transform: perspective(400px) rotateY(-1turn);
|
|
|
|
}
|
|
|
|
0%, 40% {
|
|
|
|
-webkit-animation-timing-function: ease-out;
|
|
|
|
animation-timing-function: ease-out;
|
|
|
|
}
|
|
|
|
40% {
|
|
|
|
-webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
|
|
|
|
transform: perspective(400px) translateZ(150px) rotateY(-190deg);
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
-webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
|
|
|
|
transform: perspective(400px) translateZ(150px) rotateY(-170deg);
|
|
|
|
}
|
|
|
|
50%, 80% {
|
|
|
|
-webkit-animation-timing-function: ease-in;
|
|
|
|
animation-timing-function: ease-in;
|
|
|
|
}
|
|
|
|
80% {
|
|
|
|
-webkit-transform: perspective(400px) scale3d(.95,.95,.95);
|
|
|
|
transform: perspective(400px) scale3d(.95,.95,.95);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-webkit-transform: perspective(400px);
|
|
|
|
transform: perspective(400px);
|
|
|
|
-webkit-animation-timing-function: ease-in;
|
|
|
|
animation-timing-function: ease-in;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.animated.flip {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-backface-visibility: visible;
|
2023-03-25 00:22:11 +11:00
|
|
|
backface-visibility: visible;
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: flip;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: flip;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes flipInX {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: perspective(400px) rotateX(90deg);
|
|
|
|
transform: perspective(400px) rotateX(90deg);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
0%, 40% {
|
|
|
|
-webkit-animation-timing-function: ease-in;
|
|
|
|
animation-timing-function: ease-in;
|
|
|
|
}
|
|
|
|
40% {
|
|
|
|
-webkit-transform: perspective(400px) rotateX(-20deg);
|
|
|
|
transform: perspective(400px) rotateX(-20deg);
|
|
|
|
}
|
|
|
|
60% {
|
|
|
|
-webkit-transform: perspective(400px) rotateX(10deg);
|
|
|
|
transform: perspective(400px) rotateX(10deg);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
80% {
|
|
|
|
-webkit-transform: perspective(400px) rotateX(-5deg);
|
|
|
|
transform: perspective(400px) rotateX(-5deg);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-webkit-transform: perspective(400px);
|
|
|
|
transform: perspective(400px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.flipInX {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-backface-visibility: visible!important;
|
2023-03-25 00:22:11 +11:00
|
|
|
backface-visibility: visible!important;
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: flipInX;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: flipInX;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes flipInY {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: perspective(400px) rotateY(90deg);
|
|
|
|
transform: perspective(400px) rotateY(90deg);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
0%, 40% {
|
|
|
|
-webkit-animation-timing-function: ease-in;
|
|
|
|
animation-timing-function: ease-in;
|
|
|
|
}
|
|
|
|
40% {
|
|
|
|
-webkit-transform: perspective(400px) rotateY(-20deg);
|
|
|
|
transform: perspective(400px) rotateY(-20deg);
|
|
|
|
}
|
|
|
|
60% {
|
|
|
|
-webkit-transform: perspective(400px) rotateY(10deg);
|
|
|
|
transform: perspective(400px) rotateY(10deg);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
80% {
|
|
|
|
-webkit-transform: perspective(400px) rotateY(-5deg);
|
|
|
|
transform: perspective(400px) rotateY(-5deg);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-webkit-transform: perspective(400px);
|
|
|
|
transform: perspective(400px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.flipInY {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-backface-visibility: visible!important;
|
2023-03-25 00:22:11 +11:00
|
|
|
backface-visibility: visible!important;
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: flipInY;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: flipInY;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes flipOutX {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: perspective(400px);
|
|
|
|
transform: perspective(400px);
|
|
|
|
}
|
|
|
|
30% {
|
|
|
|
-webkit-transform: perspective(400px) rotateX(-20deg);
|
|
|
|
transform: perspective(400px) rotateX(-20deg);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-webkit-transform: perspective(400px) rotateX(90deg);
|
|
|
|
transform: perspective(400px) rotateX(90deg);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.flipOutX {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: flipOutX;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: flipOutX;
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-backface-visibility: visible!important;
|
2023-03-25 00:22:11 +11:00
|
|
|
backface-visibility: visible!important;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes flipOutY {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: perspective(400px);
|
|
|
|
transform: perspective(400px);
|
|
|
|
}
|
|
|
|
30% {
|
|
|
|
-webkit-transform: perspective(400px) rotateY(-15deg);
|
|
|
|
transform: perspective(400px) rotateY(-15deg);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-webkit-transform: perspective(400px) rotateY(90deg);
|
|
|
|
transform: perspective(400px) rotateY(90deg);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.flipOutY {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-backface-visibility: visible!important;
|
2023-03-25 00:22:11 +11:00
|
|
|
backface-visibility: visible!important;
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: flipOutY;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: flipOutY;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes lightSpeedIn {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: translate3d(100%,0,0) skewX(-30deg);
|
|
|
|
transform: translate3d(100%,0,0) skewX(-30deg);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
60% {
|
|
|
|
-webkit-transform: skewX(20deg);
|
|
|
|
transform: skewX(20deg);
|
|
|
|
}
|
|
|
|
60%, 80% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
80% {
|
|
|
|
-webkit-transform: skewX(-5deg);
|
|
|
|
transform: skewX(-5deg);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-webkit-transform: none;
|
|
|
|
transform: none;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.lightSpeedIn {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: lightSpeedIn;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: lightSpeedIn;
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-timing-function: ease-out;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-timing-function: ease-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes lightSpeedOut {
|
|
|
|
0% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-webkit-transform: translate3d(100%,0,0) skewX(30deg);
|
|
|
|
transform: translate3d(100%,0,0) skewX(30deg);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.lightSpeedOut {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: lightSpeedOut;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: lightSpeedOut;
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-timing-function: ease-in;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-timing-function: ease-in;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes rotateIn {
|
|
|
|
0% {
|
|
|
|
transform-origin: center;
|
|
|
|
-webkit-transform: rotate(-200deg);
|
|
|
|
transform: rotate(-200deg);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
0%, to {
|
|
|
|
-webkit-transform-origin: center;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
transform-origin: center;
|
|
|
|
-webkit-transform: none;
|
|
|
|
transform: none;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.rotateIn {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: rotateIn;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: rotateIn;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes rotateInDownLeft {
|
|
|
|
0% {
|
|
|
|
transform-origin: left bottom;
|
|
|
|
-webkit-transform: rotate(-45deg);
|
|
|
|
transform: rotate(-45deg);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
0%, to {
|
|
|
|
-webkit-transform-origin: left bottom;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
transform-origin: left bottom;
|
|
|
|
-webkit-transform: none;
|
|
|
|
transform: none;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.rotateInDownLeft {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: rotateInDownLeft;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: rotateInDownLeft;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes rotateInDownRight {
|
|
|
|
0% {
|
|
|
|
transform-origin: right bottom;
|
|
|
|
-webkit-transform: rotate(45deg);
|
|
|
|
transform: rotate(45deg);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
0%, to {
|
|
|
|
-webkit-transform-origin: right bottom;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
transform-origin: right bottom;
|
|
|
|
-webkit-transform: none;
|
|
|
|
transform: none;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.rotateInDownRight {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: rotateInDownRight;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: rotateInDownRight;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes rotateInUpLeft {
|
|
|
|
0% {
|
|
|
|
transform-origin: left bottom;
|
|
|
|
-webkit-transform: rotate(45deg);
|
|
|
|
transform: rotate(45deg);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
0%, to {
|
|
|
|
-webkit-transform-origin: left bottom;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
transform-origin: left bottom;
|
|
|
|
-webkit-transform: none;
|
|
|
|
transform: none;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.rotateInUpLeft {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: rotateInUpLeft;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: rotateInUpLeft;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes rotateInUpRight {
|
|
|
|
0% {
|
|
|
|
transform-origin: right bottom;
|
|
|
|
-webkit-transform: rotate(-90deg);
|
|
|
|
transform: rotate(-90deg);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
0%, to {
|
|
|
|
-webkit-transform-origin: right bottom;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
transform-origin: right bottom;
|
|
|
|
-webkit-transform: none;
|
|
|
|
transform: none;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.rotateInUpRight {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: rotateInUpRight;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: rotateInUpRight;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes rotateOut {
|
|
|
|
0% {
|
|
|
|
transform-origin: center;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
0%, to {
|
|
|
|
-webkit-transform-origin: center;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
transform-origin: center;
|
|
|
|
-webkit-transform: rotate(200deg);
|
|
|
|
transform: rotate(200deg);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.rotateOut {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: rotateOut;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: rotateOut;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes rotateOutDownLeft {
|
|
|
|
0% {
|
|
|
|
transform-origin: left bottom;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
0%, to {
|
|
|
|
-webkit-transform-origin: left bottom;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
transform-origin: left bottom;
|
|
|
|
-webkit-transform: rotate(45deg);
|
|
|
|
transform: rotate(45deg);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.rotateOutDownLeft {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: rotateOutDownLeft;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: rotateOutDownLeft;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes rotateOutDownRight {
|
|
|
|
0% {
|
|
|
|
transform-origin: right bottom;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
0%, to {
|
|
|
|
-webkit-transform-origin: right bottom;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
transform-origin: right bottom;
|
|
|
|
-webkit-transform: rotate(-45deg);
|
|
|
|
transform: rotate(-45deg);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.rotateOutDownRight {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: rotateOutDownRight;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: rotateOutDownRight;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes rotateOutUpLeft {
|
|
|
|
0% {
|
|
|
|
transform-origin: left bottom;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
0%, to {
|
|
|
|
-webkit-transform-origin: left bottom;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
transform-origin: left bottom;
|
|
|
|
-webkit-transform: rotate(-45deg);
|
|
|
|
transform: rotate(-45deg);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.rotateOutUpLeft {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: rotateOutUpLeft;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: rotateOutUpLeft;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes rotateOutUpRight {
|
|
|
|
0% {
|
|
|
|
transform-origin: right bottom;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
0%, to {
|
|
|
|
-webkit-transform-origin: right bottom;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
transform-origin: right bottom;
|
|
|
|
-webkit-transform: rotate(90deg);
|
|
|
|
transform: rotate(90deg);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.rotateOutUpRight {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: rotateOutUpRight;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: rotateOutUpRight;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes hinge {
|
|
|
|
0% {
|
|
|
|
transform-origin: top left;
|
|
|
|
}
|
|
|
|
0%, 20%, 60% {
|
|
|
|
-webkit-transform-origin: top left;
|
|
|
|
-webkit-animation-timing-function: ease-in-out;
|
|
|
|
animation-timing-function: ease-in-out;
|
|
|
|
}
|
|
|
|
20%, 60% {
|
|
|
|
-webkit-transform: rotate(80deg);
|
|
|
|
transform: rotate(80deg);
|
|
|
|
transform-origin: top left;
|
|
|
|
}
|
|
|
|
40%, 80% {
|
|
|
|
-webkit-transform: rotate(60deg);
|
|
|
|
transform: rotate(60deg);
|
|
|
|
-webkit-transform-origin: top left;
|
|
|
|
transform-origin: top left;
|
|
|
|
-webkit-animation-timing-function: ease-in-out;
|
|
|
|
animation-timing-function: ease-in-out;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-webkit-transform: translate3d(0,700px,0);
|
|
|
|
transform: translate3d(0,700px,0);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.hinge {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: hinge;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: hinge;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes rollIn {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translate3d(-100%,0,0) rotate(-120deg);
|
|
|
|
transform: translate3d(-100%,0,0) rotate(-120deg);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transform: none;
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.rollIn {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: rollIn;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: rollIn;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes rollOut {
|
|
|
|
0% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translate3d(100%,0,0) rotate(120deg);
|
|
|
|
transform: translate3d(100%,0,0) rotate(120deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.rollOut {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: rollOut;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: rollOut;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes zoomIn {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: scale3d(.3,.3,.3);
|
|
|
|
transform: scale3d(.3,.3,.3);
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.zoomIn {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: zoomIn;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: zoomIn;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes zoomInDown {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
|
|
|
|
transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
|
|
|
|
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
|
|
|
|
animation-timing-function: cubic-bezier(.55,.055,.675,.19);
|
|
|
|
}
|
|
|
|
60% {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
|
|
|
|
transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
|
|
|
|
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
|
|
|
|
animation-timing-function: cubic-bezier(.175,.885,.32,1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.zoomInDown {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: zoomInDown;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: zoomInDown;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes zoomInLeft {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
|
|
|
|
transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
|
|
|
|
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
|
|
|
|
animation-timing-function: cubic-bezier(.55,.055,.675,.19);
|
|
|
|
}
|
|
|
|
60% {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
|
|
|
|
transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
|
|
|
|
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
|
|
|
|
animation-timing-function: cubic-bezier(.175,.885,.32,1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.zoomInLeft {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: zoomInLeft;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: zoomInLeft;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes zoomInRight {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
|
|
|
|
transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
|
|
|
|
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
|
|
|
|
animation-timing-function: cubic-bezier(.55,.055,.675,.19);
|
|
|
|
}
|
|
|
|
60% {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
|
|
|
|
transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
|
|
|
|
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
|
|
|
|
animation-timing-function: cubic-bezier(.175,.885,.32,1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.zoomInRight {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: zoomInRight;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: zoomInRight;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes zoomInUp {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
|
|
|
|
transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
|
|
|
|
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
|
|
|
|
animation-timing-function: cubic-bezier(.55,.055,.675,.19);
|
|
|
|
}
|
|
|
|
60% {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
|
|
|
|
transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
|
|
|
|
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
|
|
|
|
animation-timing-function: cubic-bezier(.175,.885,.32,1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.zoomInUp {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: zoomInUp;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: zoomInUp;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes zoomOut {
|
|
|
|
0% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
-webkit-transform: scale3d(.3,.3,.3);
|
|
|
|
transform: scale3d(.3,.3,.3);
|
|
|
|
}
|
|
|
|
50%, to {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.zoomOut {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: zoomOut;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: zoomOut;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes zoomOutDown {
|
|
|
|
40% {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
|
|
|
|
transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
|
|
|
|
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
|
|
|
|
animation-timing-function: cubic-bezier(.55,.055,.675,.19);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
|
|
|
|
transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
|
|
|
|
-webkit-transform-origin: center bottom;
|
|
|
|
transform-origin: center bottom;
|
|
|
|
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
|
|
|
|
animation-timing-function: cubic-bezier(.175,.885,.32,1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.zoomOutDown {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: zoomOutDown;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: zoomOutDown;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes zoomOutLeft {
|
|
|
|
40% {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transform: scale3d(.475,.475,.475) translate3d(42px,0,0);
|
|
|
|
transform: scale3d(.475,.475,.475) translate3d(42px,0,0);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: scale(.1) translate3d(-2000px,0,0);
|
|
|
|
transform: scale(.1) translate3d(-2000px,0,0);
|
|
|
|
-webkit-transform-origin: left center;
|
|
|
|
transform-origin: left center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.zoomOutLeft {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: zoomOutLeft;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: zoomOutLeft;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes zoomOutRight {
|
|
|
|
40% {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transform: scale3d(.475,.475,.475) translate3d(-42px,0,0);
|
|
|
|
transform: scale3d(.475,.475,.475) translate3d(-42px,0,0);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: scale(.1) translate3d(2000px,0,0);
|
|
|
|
transform: scale(.1) translate3d(2000px,0,0);
|
|
|
|
-webkit-transform-origin: right center;
|
|
|
|
transform-origin: right center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.zoomOutRight {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: zoomOutRight;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: zoomOutRight;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes zoomOutUp {
|
|
|
|
40% {
|
|
|
|
opacity: 1;
|
|
|
|
-webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
|
|
|
|
transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
|
|
|
|
-webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
|
|
|
|
animation-timing-function: cubic-bezier(.55,.055,.675,.19);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
|
|
|
|
transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
|
|
|
|
-webkit-transform-origin: center bottom;
|
|
|
|
transform-origin: center bottom;
|
|
|
|
-webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
|
|
|
|
animation-timing-function: cubic-bezier(.175,.885,.32,1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.zoomOutUp {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: zoomOutUp;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: zoomOutUp;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes slideInDown {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: translate3d(0,-100%,0);
|
|
|
|
transform: translate3d(0,-100%,0);
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-webkit-transform: translateZ(0);
|
|
|
|
transform: translateZ(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.slideInDown {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: slideInDown;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: slideInDown;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes slideInLeft {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: translate3d(-100%,0,0);
|
|
|
|
transform: translate3d(-100%,0,0);
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-webkit-transform: translateZ(0);
|
|
|
|
transform: translateZ(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.slideInLeft {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: slideInLeft;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: slideInLeft;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes slideInRight {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: translate3d(100%,0,0);
|
|
|
|
transform: translate3d(100%,0,0);
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-webkit-transform: translateZ(0);
|
|
|
|
transform: translateZ(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.slideInRight {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: slideInRight;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: slideInRight;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes slideInUp {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: translate3d(0,100%,0);
|
|
|
|
transform: translate3d(0,100%,0);
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-webkit-transform: translateZ(0);
|
|
|
|
transform: translateZ(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.slideInUp {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: slideInUp;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: slideInUp;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes slideOutDown {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: translateZ(0);
|
|
|
|
transform: translateZ(0);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
visibility: hidden;
|
|
|
|
-webkit-transform: translate3d(0,100%,0);
|
|
|
|
transform: translate3d(0,100%,0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.slideOutDown {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: slideOutDown;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: slideOutDown;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes slideOutLeft {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: translateZ(0);
|
|
|
|
transform: translateZ(0);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
visibility: hidden;
|
|
|
|
-webkit-transform: translate3d(-100%,0,0);
|
|
|
|
transform: translate3d(-100%,0,0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.slideOutLeft {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: slideOutLeft;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: slideOutLeft;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes slideOutRight {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: translateZ(0);
|
|
|
|
transform: translateZ(0);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
visibility: hidden;
|
|
|
|
-webkit-transform: translate3d(100%,0,0);
|
|
|
|
transform: translate3d(100%,0,0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.slideOutRight {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: slideOutRight;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: slideOutRight;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes slideOutUp {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: translateZ(0);
|
|
|
|
transform: translateZ(0);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
visibility: hidden;
|
|
|
|
-webkit-transform: translate3d(0,-100%,0);
|
|
|
|
transform: translate3d(0,-100%,0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.slideOutUp {
|
2023-04-21 13:01:32 +10:00
|
|
|
-webkit-animation-name: slideOutUp;
|
2023-03-25 00:22:11 +11:00
|
|
|
animation-name: slideOutUp;
|
|
|
|
}
|
|
|
|
|