fix: restructure animation css
This commit is contained in:
parent
a11abc7bda
commit
a6b962149a
|
@ -9,6 +9,12 @@
|
||||||
transform: translate(-50%, -125%);
|
transform: translate(-50%, -125%);
|
||||||
transition: left 500ms, transform 500ms;
|
transition: left 500ms, transform 500ms;
|
||||||
z-index: -1;
|
z-index: -1;
|
||||||
|
|
||||||
|
.art-rotate {
|
||||||
|
// transform: rotate(-180deg);
|
||||||
|
animation: 5000ms rotate linear infinite;
|
||||||
|
transition: transform 500ms;
|
||||||
|
|
||||||
.art {
|
.art {
|
||||||
position: relative;
|
position: relative;
|
||||||
@include fluid-width-height(9.0625rem, 9.0625rem);
|
@include fluid-width-height(9.0625rem, 9.0625rem);
|
||||||
|
@ -70,18 +76,20 @@
|
||||||
z-index: -4;
|
z-index: -4;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&.connected {
|
&.connected {
|
||||||
top: 50%;
|
top: 50%;
|
||||||
left: -35em;
|
left: -35em;
|
||||||
transform: translate(0, -50%);
|
transform: translate(0, -50%);
|
||||||
|
|
||||||
.art-rotate {
|
.art-rotate {
|
||||||
transform: rotate(-151.13deg);
|
transform: rotate(-151.13deg);
|
||||||
animation: none;
|
animation: none;
|
||||||
|
|
||||||
.art {
|
.art {
|
||||||
@include fluid-width-height(72rem, 72rem);
|
@include fluid-width-height(72rem, 72rem);
|
||||||
}
|
|
||||||
}
|
|
||||||
.gradient-1 {
|
.gradient-1 {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
}
|
}
|
||||||
|
@ -90,8 +98,15 @@
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&.pulse {
|
&.pulse {
|
||||||
|
.art-rotate {
|
||||||
|
will-change: transform;
|
||||||
|
transform: rotate(-151.13deg);
|
||||||
|
animation: none;
|
||||||
|
.art {
|
||||||
.gradient-1 {
|
.gradient-1 {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
}
|
}
|
||||||
|
@ -100,19 +115,10 @@
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.art-rotate {
|
|
||||||
// transform: rotate(-180deg);
|
|
||||||
animation: 5000ms rotate linear infinite;
|
|
||||||
transition: transform 500ms;
|
|
||||||
|
|
||||||
&.connected {
|
|
||||||
transform: rotate(-151.13deg);
|
|
||||||
animation: none;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes fade-in {
|
@keyframes fade-in {
|
||||||
0% {
|
0% {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
|
|
Reference in New Issue