first commit
This commit is contained in:
@@ -0,0 +1,507 @@
|
||||
.ue-animation-blink {
|
||||
animation: ue-animation-blink 1s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes ue-animation-blink {
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
50% {
|
||||
opacity: .5;
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.ue-animation-grow {
|
||||
transition-duration: 0.3s;
|
||||
transition-property: transform;
|
||||
}
|
||||
|
||||
.ue-animation-grow:hover {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
.ue-animation-shrink {
|
||||
transition-duration: 0.3s;
|
||||
transition-property: transform;
|
||||
}
|
||||
|
||||
.ue-animation-shrink:hover {
|
||||
transform: scale(0.9);
|
||||
}
|
||||
|
||||
@keyframes ue-animation-pulse {
|
||||
25% {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
75% {
|
||||
transform: scale(0.9);
|
||||
}
|
||||
}
|
||||
|
||||
.ue-animation-pulse:hover {
|
||||
animation-name: ue-animation-pulse;
|
||||
animation-duration: 1s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: infinite;
|
||||
}
|
||||
|
||||
@keyframes ue-animation-pulse-grow {
|
||||
to {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
}
|
||||
|
||||
.ue-animation-pulse-grow:hover {
|
||||
animation-name: ue-animation-pulse-grow;
|
||||
animation-duration: 0.3s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: infinite;
|
||||
animation-direction: alternate;
|
||||
}
|
||||
|
||||
@keyframes ue-animation-pulse-shrink {
|
||||
to {
|
||||
transform: scale(0.9);
|
||||
}
|
||||
}
|
||||
|
||||
.ue-animation-pulse-shrink:hover {
|
||||
animation-name: ue-animation-pulse-shrink;
|
||||
animation-duration: 0.3s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: infinite;
|
||||
animation-direction: alternate;
|
||||
}
|
||||
|
||||
@keyframes ue-animation-push {
|
||||
50% {
|
||||
transform: scale(0.8);
|
||||
}
|
||||
100% {
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
.ue-animation-push:hover {
|
||||
animation-name: ue-animation-push;
|
||||
animation-duration: 0.3s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: 1;
|
||||
}
|
||||
|
||||
@keyframes ue-animation-pop {
|
||||
50% {
|
||||
transform: scale(1.2);
|
||||
}
|
||||
}
|
||||
|
||||
.ue-animation-pop:hover {
|
||||
animation-name: ue-animation-pop;
|
||||
animation-duration: 0.3s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: 1;
|
||||
}
|
||||
|
||||
.ue-animation-bounce-in {
|
||||
transition-duration: 0.5s;
|
||||
}
|
||||
|
||||
.ue-animation-bounce-in:hover {
|
||||
transform: scale(1.2);
|
||||
transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
|
||||
}
|
||||
|
||||
.ue-animation-bounce-out {
|
||||
transition-duration: 0.5s;
|
||||
}
|
||||
|
||||
.ue-animation-bounce-out:hover {
|
||||
transform: scale(0.8);
|
||||
transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
|
||||
}
|
||||
|
||||
.ue-animation-rotate {
|
||||
transition-duration: 0.3s;
|
||||
transition-property: transform;
|
||||
}
|
||||
|
||||
.ue-animation-rotate:hover {
|
||||
transform: rotate(4deg);
|
||||
}
|
||||
|
||||
.ue-animation-grow-rotate {
|
||||
transition-duration: 0.3s;
|
||||
transition-property: transform;
|
||||
}
|
||||
|
||||
.ue-animation-grow-rotate:hover {
|
||||
transform: scale(1.1) rotate(4deg);
|
||||
}
|
||||
|
||||
.ue-animation-float {
|
||||
transition-duration: 0.3s;
|
||||
transition-property: transform;
|
||||
transition-timing-function: ease-out;
|
||||
}
|
||||
|
||||
.ue-animation-float:hover {
|
||||
transform: translateY(-8px);
|
||||
}
|
||||
|
||||
.ue-animation-sink {
|
||||
transition-duration: 0.3s;
|
||||
transition-property: transform;
|
||||
transition-timing-function: ease-out;
|
||||
}
|
||||
|
||||
.ue-animation-sink:hover {
|
||||
transform: translateY(8px);
|
||||
}
|
||||
|
||||
@keyframes ue-animation-bob {
|
||||
0% {
|
||||
transform: translateY(-8px);
|
||||
}
|
||||
50% {
|
||||
transform: translateY(-4px);
|
||||
}
|
||||
100% {
|
||||
transform: translateY(-8px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes ue-animation-bob-float {
|
||||
100% {
|
||||
transform: translateY(-8px);
|
||||
}
|
||||
}
|
||||
|
||||
.ue-animation-bob:hover {
|
||||
animation-name: ue-animation-bob-float, ue-animation-bob;
|
||||
animation-duration: .3s, 1.5s;
|
||||
animation-delay: 0s, .3s;
|
||||
animation-timing-function: ease-out, ease-in-out;
|
||||
animation-iteration-count: 1, infinite;
|
||||
animation-fill-mode: forwards;
|
||||
animation-direction: normal, alternate;
|
||||
}
|
||||
|
||||
@keyframes ue-animation-hang {
|
||||
0% {
|
||||
transform: translateY(8px);
|
||||
}
|
||||
50% {
|
||||
transform: translateY(4px);
|
||||
}
|
||||
100% {
|
||||
transform: translateY(8px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes ue-animation-hang-sink {
|
||||
100% {
|
||||
transform: translateY(8px);
|
||||
}
|
||||
}
|
||||
|
||||
.ue-animation-hang:hover {
|
||||
animation-name: ue-animation-hang-sink, ue-animation-hang;
|
||||
animation-duration: .3s, 1.5s;
|
||||
animation-delay: 0s, .3s;
|
||||
animation-timing-function: ease-out, ease-in-out;
|
||||
animation-iteration-count: 1, infinite;
|
||||
animation-fill-mode: forwards;
|
||||
animation-direction: normal, alternate;
|
||||
}
|
||||
|
||||
.ue-animation-skew {
|
||||
transition-duration: 0.3s;
|
||||
transition-property: transform;
|
||||
}
|
||||
|
||||
.ue-animation-skew:hover {
|
||||
transform: skew(-10deg);
|
||||
}
|
||||
|
||||
.ue-animation-skew-forward {
|
||||
transition-duration: 0.3s;
|
||||
transition-property: transform;
|
||||
transform-origin: 0 100%;
|
||||
}
|
||||
|
||||
.ue-animation-skew-forward:hover {
|
||||
transform: skew(-10deg);
|
||||
}
|
||||
|
||||
.ue-animation-skew-backward {
|
||||
transition-duration: 0.3s;
|
||||
transition-property: transform;
|
||||
transform-origin: 0 100%;
|
||||
}
|
||||
|
||||
.ue-animation-skew-backward:hover {
|
||||
transform: skew(10deg);
|
||||
}
|
||||
|
||||
@keyframes ue-animation-wobble-vertical {
|
||||
16.65% {
|
||||
transform: translateY(8px);
|
||||
}
|
||||
33.3% {
|
||||
transform: translateY(-6px);
|
||||
}
|
||||
49.95% {
|
||||
transform: translateY(4px);
|
||||
}
|
||||
66.6% {
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
83.25% {
|
||||
transform: translateY(1px);
|
||||
}
|
||||
100% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
.ue-animation-wobble-vertical:hover {
|
||||
animation-name: ue-animation-wobble-vertical;
|
||||
animation-duration: 1s;
|
||||
animation-timing-function: ease-in-out;
|
||||
animation-iteration-count: 1;
|
||||
}
|
||||
|
||||
@keyframes ue-animation-wobble-horizontal {
|
||||
16.65% {
|
||||
transform: translateX(8px);
|
||||
}
|
||||
33.3% {
|
||||
transform: translateX(-6px);
|
||||
}
|
||||
49.95% {
|
||||
transform: translateX(4px);
|
||||
}
|
||||
66.6% {
|
||||
transform: translateX(-2px);
|
||||
}
|
||||
83.25% {
|
||||
transform: translateX(1px);
|
||||
}
|
||||
100% {
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
.ue-animation-wobble-horizontal:hover {
|
||||
animation-name: ue-animation-wobble-horizontal;
|
||||
animation-duration: 1s;
|
||||
animation-timing-function: ease-in-out;
|
||||
animation-iteration-count: 1;
|
||||
}
|
||||
|
||||
@keyframes ue-animation-wobble-to-bottom-right {
|
||||
16.65% {
|
||||
transform: translate(8px, 8px);
|
||||
}
|
||||
33.3% {
|
||||
transform: translate(-6px, -6px);
|
||||
}
|
||||
49.95% {
|
||||
transform: translate(4px, 4px);
|
||||
}
|
||||
66.6% {
|
||||
transform: translate(-2px, -2px);
|
||||
}
|
||||
83.25% {
|
||||
transform: translate(1px, 1px);
|
||||
}
|
||||
100% {
|
||||
transform: translate(0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
.ue-animation-wobble-to-bottom-right:hover {
|
||||
animation-name: ue-animation-wobble-to-bottom-right;
|
||||
animation-duration: 1s;
|
||||
animation-timing-function: ease-in-out;
|
||||
animation-iteration-count: 1;
|
||||
}
|
||||
|
||||
@keyframes ue-animation-wobble-to-top-right {
|
||||
16.65% {
|
||||
transform: translate(8px, -8px);
|
||||
}
|
||||
33.3% {
|
||||
transform: translate(-6px, 6px);
|
||||
}
|
||||
49.95% {
|
||||
transform: translate(4px, -4px);
|
||||
}
|
||||
66.6% {
|
||||
transform: translate(-2px, 2px);
|
||||
}
|
||||
83.25% {
|
||||
transform: translate(1px, -1px);
|
||||
}
|
||||
100% {
|
||||
transform: translate(0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
.ue-animation-wobble-to-top-right:hover {
|
||||
animation-name: ue-animation-wobble-to-top-right;
|
||||
animation-duration: 1s;
|
||||
animation-timing-function: ease-in-out;
|
||||
animation-iteration-count: 1;
|
||||
}
|
||||
|
||||
@keyframes ue-animation-wobble-top {
|
||||
16.65% {
|
||||
transform: skew(-12deg);
|
||||
}
|
||||
33.3% {
|
||||
transform: skew(10deg);
|
||||
}
|
||||
49.95% {
|
||||
transform: skew(-6deg);
|
||||
}
|
||||
66.6% {
|
||||
transform: skew(4deg);
|
||||
}
|
||||
83.25% {
|
||||
transform: skew(-2deg);
|
||||
}
|
||||
100% {
|
||||
transform: skew(0);
|
||||
}
|
||||
}
|
||||
|
||||
.ue-animation-wobble-top {
|
||||
transform-origin: 0 100%;
|
||||
}
|
||||
|
||||
.ue-animation-wobble-top:hover {
|
||||
animation-name: ue-animation-wobble-top;
|
||||
animation-duration: 1s;
|
||||
animation-timing-function: ease-in-out;
|
||||
animation-iteration-count: 1;
|
||||
}
|
||||
|
||||
@keyframes ue-animation-wobble-bottom {
|
||||
16.65% {
|
||||
transform: skew(-12deg);
|
||||
}
|
||||
33.3% {
|
||||
transform: skew(10deg);
|
||||
}
|
||||
49.95% {
|
||||
transform: skew(-6deg);
|
||||
}
|
||||
66.6% {
|
||||
transform: skew(4deg);
|
||||
}
|
||||
83.25% {
|
||||
transform: skew(-2deg);
|
||||
}
|
||||
100% {
|
||||
transform: skew(0);
|
||||
}
|
||||
}
|
||||
|
||||
.ue-animation-wobble-bottom {
|
||||
transform-origin: 100% 0;
|
||||
}
|
||||
|
||||
.ue-animation-wobble-bottom:hover {
|
||||
animation-name: ue-animation-wobble-bottom;
|
||||
animation-duration: 1s;
|
||||
animation-timing-function: ease-in-out;
|
||||
animation-iteration-count: 1;
|
||||
}
|
||||
|
||||
@keyframes ue-animation-wobble-skew {
|
||||
16.65% {
|
||||
transform: skew(-12deg);
|
||||
}
|
||||
33.3% {
|
||||
transform: skew(10deg);
|
||||
}
|
||||
49.95% {
|
||||
transform: skew(-6deg);
|
||||
}
|
||||
66.6% {
|
||||
transform: skew(4deg);
|
||||
}
|
||||
83.25% {
|
||||
transform: skew(-2deg);
|
||||
}
|
||||
100% {
|
||||
transform: skew(0);
|
||||
}
|
||||
}
|
||||
|
||||
.ue-animation-wobble-skew:hover {
|
||||
animation-name: ue-animation-wobble-skew;
|
||||
animation-duration: 1s;
|
||||
animation-timing-function: ease-in-out;
|
||||
animation-iteration-count: 1;
|
||||
}
|
||||
|
||||
@keyframes ue-animation-buzz {
|
||||
50% {
|
||||
transform: translateX(3px) rotate(2deg);
|
||||
}
|
||||
100% {
|
||||
transform: translateX(-3px) rotate(-2deg);
|
||||
}
|
||||
}
|
||||
|
||||
.ue-animation-buzz:hover {
|
||||
animation-name: ue-animation-buzz;
|
||||
animation-duration: 0.15s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: infinite;
|
||||
}
|
||||
|
||||
@keyframes ue-animation-buzz-out {
|
||||
10% {
|
||||
transform: translateX(3px) rotate(2deg);
|
||||
}
|
||||
20% {
|
||||
transform: translateX(-3px) rotate(-2deg);
|
||||
}
|
||||
30% {
|
||||
transform: translateX(3px) rotate(2deg);
|
||||
}
|
||||
40% {
|
||||
transform: translateX(-3px) rotate(-2deg);
|
||||
}
|
||||
50% {
|
||||
transform: translateX(2px) rotate(1deg);
|
||||
}
|
||||
60% {
|
||||
transform: translateX(-2px) rotate(-1deg);
|
||||
}
|
||||
70% {
|
||||
transform: translateX(2px) rotate(1deg);
|
||||
}
|
||||
80% {
|
||||
transform: translateX(-2px) rotate(-1deg);
|
||||
}
|
||||
90% {
|
||||
transform: translateX(1px) rotate(0);
|
||||
}
|
||||
100% {
|
||||
transform: translateX(-1px) rotate(0);
|
||||
}
|
||||
}
|
||||
|
||||
.ue-animation-buzz-out:hover {
|
||||
animation-name: ue-animation-buzz-out;
|
||||
animation-duration: 0.75s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: 1;
|
||||
}
|
||||
Reference in New Issue
Block a user