#212121
1.loading svg polyline { 2 fill: none; 3 stroke-width: 3; 4 stroke-linecap: round; 5 stroke-linejoin: round; 6} 7 8.loading svg polyline#back { 9 fill: none; 10 stroke: #ff4d5033; 11} 12 13.loading svg polyline#front { 14 fill: none; 15 stroke: #00ffff; 16 stroke-dasharray: 48, 144; 17 stroke-dashoffset: 192; 18 animation: dash_682 2s linear infinite; 19 animation-delay: 0s; 20} 21 22.loading svg polyline#front2 { 23 fill: none; 24 stroke: #00ffff; 25 stroke-dasharray: 48, 144; 26 stroke-dashoffset: 192; 27 animation: dash_682 2s linear infinite; 28 animation-delay: 1s; 29} 30 31@keyframes dash_682 { 32 72.5% { 33 opacity: 0; 34 } 35 36 to { 37 stroke-dashoffset: 0; 38 } 39} 40
245 views
Variation of aloader
245 views
Variation of aloader
Comments
MIT License