Made circular progress have a single color and made it changeable via a property.

This commit is contained in:
Matt Mo 2021-03-10 08:57:10 -08:00
parent ac43b68f93
commit b850b82fe7

View File

@ -17,7 +17,7 @@ class CircularProgress extends IgniteElement {
mt-circular-progress > div > svg > circle { mt-circular-progress > div > svg > circle {
stroke-dasharray: 80px, 200px; stroke-dasharray: 80px, 200px;
stroke-dashoffset: 0px; stroke-dashoffset: 0px;
animation: dash 2s ease-in-out infinite, colors 5.6s ease-in-out infinite; animation: dash 2s ease-in-out infinite;
} }
@keyframes rotator { @keyframes rotator {
@ -28,24 +28,6 @@ class CircularProgress extends IgniteElement {
transform: rotate(360deg); transform: rotate(360deg);
} }
} }
@keyframes colors {
0% {
stroke: #4285F4;
}
25% {
stroke: #DE3E35;
}
50% {
stroke: #F7C223;
}
75% {
stroke: #1B9A59;
}
100% {
stroke: #4285F4;
}
}
@keyframes dash { @keyframes dash {
0% { 0% {
@ -68,7 +50,8 @@ class CircularProgress extends IgniteElement {
return { return {
loading: true, loading: true,
size: "4em", size: "4em",
stroke: "3.6" strokeWidth: "3.6",
stroke: "#4285F4"
}; };
} }
@ -88,7 +71,8 @@ class CircularProgress extends IgniteElement {
.attribute("cy", "44") .attribute("cy", "44")
.attribute("r", "20.2") .attribute("r", "20.2")
.attribute("fill", "none") .attribute("fill", "none")
.attribute("stroke-width", this.stroke) .attribute("stroke-width", this.strokeWidth)
.attribute("stroke", this.stroke)
), ),
new slot(this) new slot(this)
) )