Added ability to center or not center the mt-circular-progress.
This commit is contained in:
parent
3b6365ae75
commit
ac6c7301c7
@ -19,7 +19,6 @@ class CircularProgress extends IgniteElement {
|
||||
}
|
||||
|
||||
mt-circular-progress > div > svg {
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
animation: rotator 2s linear infinite;
|
||||
}
|
||||
@ -61,7 +60,8 @@ class CircularProgress extends IgniteElement {
|
||||
loading: true,
|
||||
size: "4em",
|
||||
strokeWidth: "3.6",
|
||||
stroke: "#4285F4"
|
||||
stroke: "#4285F4",
|
||||
center: true
|
||||
};
|
||||
}
|
||||
|
||||
@ -72,8 +72,9 @@ class CircularProgress extends IgniteElement {
|
||||
.attribute("viewBox", "22 22 44 44")
|
||||
.style("width", this.size)
|
||||
.style("height", this.size)
|
||||
.style("left", this.size, null, size => `calc(50% - (${size} / 2))`)
|
||||
.style("top", this.size, null, size => `calc(50% - (${size} / 2))`)
|
||||
.style("left", [this.size, this.center], null, (size, center) => center ? `calc(50% - (${size} / 2))` : null)
|
||||
.style("top", [this.size, this.center], null, (size, center) => center ? `calc(50% - (${size} / 2))` : null)
|
||||
.style("position", this.center, true, center => center ? "absolute" : "relative")
|
||||
.show(this.loading)
|
||||
.child(
|
||||
new circle()
|
||||
|
Loading…
x
Reference in New Issue
Block a user