st-progress-component
Version:
Stencil Progress Component
32 lines (28 loc) • 679 B
CSS
@keyframes rotate {
to {
transform: rotate(360deg); } }
@-webkit-keyframes rotate {
to {
-webkit-transform: rotate(360deg); } }
@-moz-keyframes rotate {
to {
transform: rotate(360deg); } }
div {
width: 40px;
height: 40px;
margin: 16px;
color: #000;
animation-duration: 1.4s;
animation-delay: 0s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: normal;
animation-fill-mode: none;
animation-play-state: running;
animation-name: rotate;
display: inline-block;
line-height: 1; }
div svg circle {
stroke-dasharray: 80px, 200px;
stroke-dashoffset: 0px;
stroke: currentColor; }